diff --git a/fbcrawl/__pycache__/items.cpython-37.pyc b/fbcrawl/__pycache__/items.cpython-37.pyc index 75fdef8..4006724 100644 Binary files a/fbcrawl/__pycache__/items.cpython-37.pyc and b/fbcrawl/__pycache__/items.cpython-37.pyc differ diff --git a/fbcrawl/items.py b/fbcrawl/items.py index ecdaad9..794821d 100644 --- a/fbcrawl/items.py +++ b/fbcrawl/items.py @@ -627,3 +627,14 @@ class CommentsItem(scrapy.Item): sigh = scrapy.Field() grrr = scrapy.Field() share = scrapy.Field() # num of shares + +class ProfileItem(scrapy.Item): + name = scrapy.Field() + gender = scrapy.Field() + birthday = scrapy.Field() + current_city = scrapy.Field() + hometown = scrapy.Field() + work = scrapy.Field() + education = scrapy.Field() + interested_in = scrapy.Field() + page = scrapy.Field() diff --git a/fbcrawl/spiders/profiles.py b/fbcrawl/spiders/profiles.py new file mode 100644 index 0000000..41004b6 --- /dev/null +++ b/fbcrawl/spiders/profiles.py @@ -0,0 +1,289 @@ +import scrapy + +from scrapy.loader import ItemLoader +from scrapy.exceptions import CloseSpider +from fbcrawl.spiders.fbcrawl import FacebookSpider +from fbcrawl.items import ProfileItem, parse_date, parse_date2 + +from datetime import datetime + +class ProfileSpider(FacebookSpider): + """ + Parse FB profiles + """ + name = "profiles" + custom_settings = { + 'FEED_EXPORT_FIELDS': ['name','gender','birthday','current_city', + 'hometown','work','education','interested_in', + 'page'], + 'DUPEFILTER_CLASS' : 'scrapy.dupefilters.BaseDupeFilter', + 'CONCURRENT_REQUESTS' : 1 + } + + def __init__(self, *args, **kwargs): + if 'post' in kwargs and 'page' in kwargs: + raise AttributeError('You need to specifiy only one between post and page') + elif 'post' in kwargs: + self.page = kwargs['post'] + self.type = 'post' + elif 'page' in kwargs: + self.type = 'page' + + super().__init__(*args,**kwargs) + + def parse_page(self, response): + ''' + ''' + if self.type == 'post': + yield scrapy.Request(url=response.url, + callback=self.parse_post, + priority=10, + meta={'index':1}) + elif self.type == 'page': + #select all posts + for post in response.xpath("//div[contains(@data-ft,'top_level_post_id')]"): + many_features = post.xpath('./@data-ft').get() + date = [] + date.append(many_features) + date = parse_date(date,{'lang':self.lang}) + current_date = datetime.strptime(date,'%Y-%m-%d %H:%M:%S') if date is not None else date + + if current_date is None: + date_string = post.xpath('.//abbr/text()').get() + date = parse_date2([date_string],{'lang':self.lang}) + current_date = datetime(date.year,date.month,date.day) if date is not None else date + date = str(date) + + if abs(self.count) + 1 > self.max: + raise CloseSpider('Reached max num of post: {}. Crawling finished'.format(abs(self.count))) + self.logger.info('Parsing post n = {}, post_date = {}'.format(abs(self.count)+1,date)) + + #returns full post-link in a list + post = post.xpath(".//a[contains(@href,'footer')]/@href").extract() + temp_post = response.urljoin(post[0]) + self.count -= 1 + yield scrapy.Request(temp_post, + self.parse_post, + priority = self.count, + meta={'index':1}) + + #load following page, try to click on "more" + #after few pages have been scraped, the "more" link might disappears + #if not present look for the highest year not parsed yet + #click once on the year and go back to clicking "more" + + #new_page is different for groups + if self.group == 1: + new_page = response.xpath("//div[contains(@id,'stories_container')]/div[2]/a/@href").extract() + else: + new_page = response.xpath("//div[2]/a[contains(@href,'timestart=') and not(contains(text(),'ent')) and not(contains(text(),number()))]/@href").extract() + #this is why lang is needed + + if not new_page: + self.logger.info('[!] "more" link not found, will look for a "year" link') + #self.k is the year link that we look for + if response.meta['flag'] == self.k and self.k >= self.year: + xpath = "//div/a[contains(@href,'time') and contains(text(),'" + str(self.k) + "')]/@href" + new_page = response.xpath(xpath).extract() + if new_page: + new_page = response.urljoin(new_page[0]) + self.k -= 1 + self.logger.info('Found a link for year "{}", new_page = {}'.format(self.k,new_page)) + yield scrapy.Request(new_page, + callback=self.parse_page, + priority = -1000, + meta={'flag':self.k}) + else: + while not new_page: #sometimes the years are skipped this handles small year gaps + self.logger.info('Link not found for year {}, trying with previous year {}'.format(self.k,self.k-1)) + self.k -= 1 + if self.k < self.year: + raise CloseSpider('Reached date: {}. Crawling finished'.format(self.date)) + xpath = "//div/a[contains(@href,'time') and contains(text(),'" + str(self.k) + "')]/@href" + new_page = response.xpath(xpath).extract() + self.logger.info('Found a link for year "{}", new_page = {}'.format(self.k,new_page)) + new_page = response.urljoin(new_page[0]) + self.k -= 1 + yield scrapy.Request(new_page, + callback=self.parse_page, + priority = -1000, + meta={'flag':self.k}) + else: + self.logger.info('Crawling has finished with no errors!') + else: + new_page = response.urljoin(new_page[0]) + if 'flag' in response.meta: + self.logger.info('Page scraped, clicking on "more"! new_page = {}'.format(new_page)) + yield scrapy.Request(new_page, + callback=self.parse_page, + priority = -1000, + meta={'flag':response.meta['flag']}) + else: + self.logger.info('First page scraped, clicking on "more"! new_page = {}'.format(new_page)) + yield scrapy.Request(new_page, + callback=self.parse_page, + priority = -1000, + meta={'flag':self.k}) + + def parse_post(self, response): + ''' + parse post does multiple things: + 1) loads replied-to-comments page one-by-one (for DFS) + 2) call parse_reply on the nested comments + 3) adds simple (not-replied-to) comments + 4) follows to new comment page + ''' + #load replied-to comments pages + #select nested comment one-by-one matching with the index: response.meta['index'] + path = './/div[string-length(@class) = 2 and count(@id)=1 and contains("0123456789", substring(@id,1,1)) and .//div[contains(@id,"comment_replies")]]' + '['+ str(response.meta['index']) + ']' + group_flag = response.meta['group'] if 'group' in response.meta else None + + for reply in response.xpath(path): + rep = reply.xpath('.//h3/a/@href').get() + profile = 'https://mbasic.facebook.com' + rep[:rep.find('?rc')] + '/about' + yield scrapy.Request(profile, + callback=self.parse_profile, + priority=1000, + meta={'url':response.url, + 'index':response.meta['index'], + 'flag':'init', + 'group':group_flag}) + #load regular comments + if not response.xpath(path): #prevents from exec + path2 = './/div[string-length(@class) = 2 and count(@id)=1 and contains("0123456789", substring(@id,1,1)) and not(.//div[contains(@id,"comment_replies")])]' + for i,reply in enumerate(response.xpath(path2)): + self.logger.info('{} regular comment'.format(i+1)) + rep = reply.xpath('.//h3/a/@href').get() + profile = 'https://mbasic.facebook.com' + rep[:rep.find('?rc')] + '/about' + yield scrapy.Request(profile, + callback=self.parse_profile, + priority=1000, + meta={'url':response.url, + 'index':response.meta['index'], + 'flag':'init', + 'group':group_flag}) + + #new comment page + if not response.xpath(path): + #for groups + next_xpath = './/div[contains(@id,"see_next")]' + prev_xpath = './/div[contains(@id,"see_prev")]' + if not response.xpath(next_xpath) or group_flag == 1: + for next_page in response.xpath(prev_xpath): + new_page = next_page.xpath('.//@href').extract() + new_page = response.urljoin(new_page[0]) + self.logger.info('New page to be crawled {}'.format(new_page)) + yield scrapy.Request(new_page, + callback=self.parse_post, + meta={'index':1, + 'group':1}) + else: + for next_page in response.xpath(next_xpath): + new_page = next_page.xpath('.//@href').extract() + new_page = response.urljoin(new_page[0]) + self.logger.info('New page to be crawled {}'.format(new_page)) + yield scrapy.Request(new_page, + callback=self.parse_post, + meta={'index':1, + 'group':group_flag}) + + def parse_reply(self,response): + ''' + parse reply to comments, root comment is added if flag + ''' +# from scrapy.utils.response import open_in_browser +# open_in_browser(response) + + if response.meta['flag'] == 'init': + #parse root comment + for root in response.xpath('//div[contains(@id,"root")]/div/div/div[count(@id)!=1 and contains("0123456789", substring(@id,1,1))]'): + rep = root.xpath('.//h3/a/@href').get() + profile = 'https://mbasic.facebook.com' + rep[:rep.find('?rc')] + '/about' + yield scrapy.Request(profile, + callback=self.parse_profile, + priority=1000, + meta={'url':response.url, + 'index':response.meta['index'], + 'flag':'init', + 'group':response['group_flag']}) + #parse all replies in the page + for reply in response.xpath('//div[contains(@id,"root")]/div/div/div[count(@id)=1 and contains("0123456789", substring(@id,1,1))]'): + rep = reply.xpath('.//h3/a/@href').get() + profile = 'https://mbasic.facebook.com' + rep[:rep.find('?rc')] + '/about' + yield scrapy.Request(profile, + callback=self.parse_profile, + priority=1000, + meta={'url':response.url, + 'index':response.meta['index'], + 'flag':'init', + 'group':response['group_flag']}) + + back = response.xpath('//div[contains(@id,"comment_replies_more_1")]/a/@href').extract() + if back: + self.logger.info('Back found, more nested comments') + back_page = response.urljoin(back[0]) + yield scrapy.Request(back_page, + callback=self.parse_reply, + priority = 1000, + meta={'reply_to':response.meta['reply_to'], + 'flag':'back', + 'url':response.meta['url'], + 'index':response.meta['index'], + 'group':response.meta['group']}) + + else: + next_reply = response.meta['url'] + self.logger.info('Nested comments crawl finished, heading to proper page: {}'.format(response.meta['url'])) + yield scrapy.Request(next_reply, + callback=self.parse_post, + meta={'index':response.meta['index']+1, + 'group':response.meta['group']}) + + elif response.meta['flag'] == 'back': + #parse all comments + for reply in response.xpath('//div[contains(@id,"root")]/div/div/div[count(@id)=1 and contains("0123456789", substring(@id,1,1))]'): + rep = reply.xpath('.//h3/a/@href').extract()[0] + profile = 'https://mbasic.facebook.com' + rep[:rep.find('?rc')] + '/about' + yield scrapy.Request(profile, + callback=self.parse_profile, + priority=1000, + meta={'url':response.url, + 'index':response.meta['index'], + 'flag':'init', + 'group':response['group_flag']}) + #keep going backwards + back = response.xpath('//div[contains(@id,"comment_replies_more_1")]/a/@href').extract() + self.logger.info('Back found, more nested comments') + if back: + back_page = response.urljoin(back[0]) + yield scrapy.Request(back_page, + callback=self.parse_reply, + priority=1000, + meta={'reply_to':response.meta['reply_to'], + 'flag':'back', + 'url':response.meta['url'], + 'index':response.meta['index'], + 'group':response.meta['group']}) + + else: + next_reply = response.meta['url'] + self.logger.info('Nested comments crawl finished, heading to home page: {}'.format(response.meta['url'])) + yield scrapy.Request(next_reply, + callback=self.parse_post, + meta={'index':response.meta['index']+1, + 'group':response.meta['group']}) + + + def parse_profile(self,response): + new = ItemLoader(item=ProfileItem(),response=response) + self.logger.info('Crawling profile info') + new.add_xpath('name','//span/div/span/strong/text()') + new.add_xpath('gender',"//div[@id='basic-info']//div[@title='Gender']//div/text()") + new.add_xpath('birthday',"//div[@id='basic-info']//div[@title='Birthday']//div/text()") + new.add_xpath('current_city',"//div[@id='living']//div[@title='Current City']//a/text()") + new.add_xpath('hometown',"//div[@id='living']//div[@title='Hometown']//a/text()") + new.add_xpath('work',"//div[@id='work']//a/text()") + new.add_xpath('education',"//div[@id='education']//a/text()") + new.add_xpath('interested_in',"//div[@id='interested-in']//div[not(contains(text(),'Interested In'))]/text()") + new.add_xpath('page',"//div[@id='contact-info']//div[@title='Facebook']//div/text()") + yield new.load_item() diff --git a/trump_comments.csv b/trump_comments.csv new file mode 100644 index 0000000..05bdd63 --- /dev/null +++ b/trump_comments.csv @@ -0,0 +1,3780 @@ +source,reply_to,date,reactions,text,source_url,url +Nicola Zilli,ROOT,2019-05-18,161,Piazza strapiena e in 26mila connessi alla diretta. Maalox esaurito sugli scaffali🤣,/nicola.zilli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&count=32&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDOdicyv2ginuN9&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gabriella Spica,Nicola Zilli,2019-05-18,2,Pidioti coglioni...un connubio ben congegnato! 😎,/gabriella.spica?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&count=32&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDOdicyv2ginuN9&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carlo Buratto,Nicola Zilli,2019-05-18,,Salvo Marò. La foto è stata scattata mentre se ne stavano andando.,/profile.php?id=100009389783507&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&count=32&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDOdicyv2ginuN9&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Franz Righi,Nicola Zilli,2019-05-18,3,"infatti oppure prima, dato che sul palco non c'è nessuno. questi pdioti sono proprio idioti!! Del resto di cosa stupirsi se i loro idoli sono Renzi, Saviano.. Martina!!!! 😂😂😂😂😂😕",/franz.righi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&count=32&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDOdicyv2ginuN9&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Salvatore Di Marino,Nicola Zilli,2019-05-18,1,Salvo Marò Bravo .Erano in fase di colazione e tu gliela preparavi?,/dimarino.salvatore?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&count=32&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDOdicyv2ginuN9&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Raffaele Monaco,Nicola Zilli,2019-05-18,,"Nicola Zilli 26mila connessi è la base del profilo, poi considera le condivisioni e le cifre sono ben altre💪",/MonacoRaf?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&count=32&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDOdicyv2ginuN9&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosanna Santarelli,Nicola Zilli,2019-05-18,2,"Salvo Marò persino di fronte all'evidenza ci sono video qui sulla pagina di Salvini che fanno vedere una folla oceanica e voi anche di fronte a questo mentite spudoratamente pensa che elementi siete voi di sinistra, mentite, amate chi ci invade e chi ci porta degrado, odiate gli italiani che amano la propria patria, sapete solo offendere e spargere odio, Salvini ha dimostrato solo umanità ed educazione come sempre ci contraddistingue!! Della serie che appiccicate a noi ciò che siete voi!!",/rorysantar?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&count=32&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDOdicyv2ginuN9&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luca D'Amato,Nicola Zilli,2019-05-18,,Salvo Marò primo lui non è sul palco e secondo evidentemente la gente stava iniziando a riempire la piazza.. non credi? Non fermarti alle apparenze 😉,/luca.bellicapelli1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&count=32&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDOdicyv2ginuN9&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Laura Machieraldo,Nicola Zilli,2019-05-18,,Salvo Marò sei proprio un intelligentone 🤣 Questa foto è stata presa molte ore prima dell’inizio dell’evento ... figuraccia!,/laura.machieraldo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&count=32&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDOdicyv2ginuN9&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gabriella Spica,Nicola Zilli,2019-05-18,,Vai a Roma in San Pietro dal compagno Bergoglio...lui bacia i piedi ai poveracci come te 😊,/gabriella.spica?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&count=32&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDOdicyv2ginuN9&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosaria Merola,ROOT,2019-05-18,824,"HAI DIMOSTRATO ALLA SINISTRA ,COME SI PARLA SENZA AZZANNARE E OFFENDERE. QUESTA E' DEMOCRAZIA!!!!!",/rosaria.merola.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&count=126&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB0ILP-gqK2VlyU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Noi con voi,Rosaria Merola,2019-05-18,1,"Io più vedo i post di Repubblica, più penso che i loro giornali debbano essere usati come carta igienica. Non sanno proprio cosa significa essere neutrali col solo compito di informare. Metà della pagina va contro la Lega mentre gli anni precedenti non hanno mai detto così tanto sul governo PD, che vergogna. Io mi rifiuto completamente di considerarli come giornalisti. Al posto di occuparvi delle cazzate, perchè non vi occupate di informare e aiutate a contribuire a rendere migliore questo paese?",/Noi-con-voi-176054846342437/?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&count=126&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB0ILP-gqK2VlyU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mauro Cavallini,Rosaria Merola,2019-05-18,,Mai Penrai torni a manila,/mauro.cavallini.7311?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&count=126&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB0ILP-gqK2VlyU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniele Davi,Rosaria Merola,2019-05-18,,Karima Anna Alba Ederle E arrivata un altra non italiana ovvio a rompere .allora andare in compagnia a cagare sulle ortiche.,/senzacuore13?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&count=126&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB0ILP-gqK2VlyU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Angelo Parma,Rosaria Merola,2019-05-18,,"NON L’ HA SOSPESA LUI!!! E’ LA LEGGE CHE DICE CHE NON PUOI INFLUENZARE POLITICAMENTE, E NON SOLO, DEI MINORI E ANCHE NON SOPRATTUTTO IN UNA SCUOLA MA I SINISTRI GIOCANO SEMPRE SPORCO",/angelo.parma.35?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&count=126&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB0ILP-gqK2VlyU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cele Stella Carraro,Rosaria Merola,2019-05-18,,Mai Penrai ???,/stella.carraro.549?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&count=126&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB0ILP-gqK2VlyU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Arnaldo Di Carlo,Rosaria Merola,2019-05-18,,Mai Penrai una che nasconde il suo profilo chiama gli altri il nulla fatti vedere chi sei o sei proprio te il nulla?,/arnaldo.dicarlo.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&count=126&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB0ILP-gqK2VlyU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucia la Rosa,Rosaria Merola,2019-05-18,,Mai Penrai bla bla bla ....la globalizzazione ci sta divorando e i trogloditi recitano ancora le filastrocche sui terroni ...,/profile.php?id=100000169641367&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&count=126&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB0ILP-gqK2VlyU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Punturiero,Rosaria Merola,2019-05-18,,Mai Penrai a loro gli diceva coglioni a te ancora te lo dice!,/giuseppe.punturiero.90?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&count=126&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB0ILP-gqK2VlyU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Humbert von Khoellen,Rosaria Merola,2019-05-18,,Mai Penrai ..ma va a cagare..,/humbert.vonkhoellen?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&count=126&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB0ILP-gqK2VlyU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lidia Soloio,Nicola Zilli,2019-05-18,6,Salvo Marò hai preso la foto alle 11 di mattina vero se passavi alle 16 non trovavi nemmeno posto RIDICOLO VAI A NASCONDERTI !!!,/lidia.vinco?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=10&count=32&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD5_7-fg2bmkYAf +Meris Curnis,Nicola Zilli,2019-05-18,6,Ma no.. Salvo Maro fa vedere quella del pd Azzo se le brucia,/meris.curnis.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=10&count=32&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD5_7-fg2bmkYAf +Lidia Soloio,Nicola Zilli,2019-05-18,2,Salvo Marò guardati la foto di Stefano Margarito c'è un pó di differenza dalla tua credevi di essere furbo invece sei sbugiardato qui !!!!,/lidia.vinco?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=10&count=32&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD5_7-fg2bmkYAf +Salvatore Mazzetti,Nicola Zilli,2019-05-18,4,Stefano Margarito VEDI SE STASERA I VARI TG DI REGIME FARANNO MAI VEDERE QUESTA PIAZZA STRAPIENA FINO ALL'ORLO.MAI E POI MAI!!.PERCHÉ IN QUESTE ORE I PIDIOTI E 5STALLE ROSICANO A TUTTO SPIANO E MALOX A TUTTO SPIANO. FORZAAA SALVINI E FORZA LEGA NON MOLLARE MAI E PORTI SEMPRE CHIUSI IN ITALIA,/salvatore.mazzetti.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=10&count=32&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD5_7-fg2bmkYAf +Stefano Schiaramazzi,Nicola Zilli,2019-05-18,,"Salvo Marò intelligentone, festeggia pure tu, che non vedo nazi-fascismi all'orizzonte😉",/stefano.schiaramazzi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=10&count=32&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD5_7-fg2bmkYAf +Franz Righi,Nicola Zilli,2019-05-18,1,eccone uno,/franz.righi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=10&count=32&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD5_7-fg2bmkYAf +Franz Righi,Nicola Zilli,2019-05-18,,quindi pure lei,/franz.righi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=10&count=32&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD5_7-fg2bmkYAf +Franz Righi,Nicola Zilli,2019-05-18,5,strano non ci sia sul palco nessuno. ma non mi dirai che é una foto fatta prima dell'evento? 😂😂😂😂😂pdioti.. oh ma siete proprio stupidi,/franz.righi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=10&count=32&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD5_7-fg2bmkYAf +Franz Righi,Nicola Zilli,2019-05-18,1,salvo or schiuma pure,/franz.righi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=10&count=32&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD5_7-fg2bmkYAf +Mai Penrai,Rosaria Merola,2019-05-18,,Daniele Davi non continui a rispondere. Lo dico per lei. Continua a rendersi ridicolo. Lei accusa me di usare la parola “terrone” come insulto??? Le ricordo che “per sfamare quei coglioni che si chiamano terroni” è nella preghiera della Lega. Lo capisce l’italiano? Patetico.,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=10&count=127&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAtvhP1L3jYoLyc +Francesca Colussi,Rosaria Merola,2019-05-18,,Mai Penrai vai a farti curare ma da uno bravo!!!!,/francesca.colussi.921?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=10&count=127&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAtvhP1L3jYoLyc +Mai Penrai,Rosaria Merola,2019-05-18,,Beh adesso davvero l’Eurovision sta per iniziare. Vai Mahmood sei tutta l’Italia!!!,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=10&count=127&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAtvhP1L3jYoLyc +Rosaria Merola,Rosaria Merola,2019-05-18,,Mai Penrai Tu invece CHI SEI?,/rosaria.merola.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=10&count=127&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAtvhP1L3jYoLyc +Anna Colombo,Rosaria Merola,2019-05-18,,Mai Penrai ma a te manca qualcosa ... Poi senza metterci la faccia vergognati x quello che hai scritto. .una marea di bugie pinocchio,/profile.php?id=100009418309198&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=10&count=127&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAtvhP1L3jYoLyc +Lucia la Rosa,Rosaria Merola,2019-05-18,,Mai Penrai che livore nei confronti dei meridionali ! In quale secolo vive signora Satutto?,/profile.php?id=100000169641367&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=10&count=127&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAtvhP1L3jYoLyc +Daniele Davi,Rosaria Merola,2019-05-18,,Mai Penrai lei rischia una denuncia si fidi.Mi sembra stia esagerando. Se non le va bene eviti l Italia .,/senzacuore13?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=10&count=127&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAtvhP1L3jYoLyc +Cinzia Macchi,Rosaria Merola,2019-05-18,,Mai Penrai no mi spiace ma questo Mahmood non è l'italia....lui appartiene ad un altro paese. ...,/cinzia.macchi.33?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=10&count=127&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAtvhP1L3jYoLyc +Nello Tocchini,Rosaria Merola,2019-05-18,,Mai Penrai vi brucia e come vi brucia...,/nello.tocchini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=10&count=127&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAtvhP1L3jYoLyc +Nello Tocchini,Rosaria Merola,2019-05-18,,Mai Penrai siamo il nulla che vi sta togliendo il sonno,/nello.tocchini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=10&count=127&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAtvhP1L3jYoLyc +Stefano Schiaramazzi,Nicola Zilli,2019-05-18,2,"Troppe medicine, gli serve qualcosa di più naturale...tipo il succo di limone o l'acido citrico😏",/stefano.schiaramazzi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=20&count=32&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAbQt9J9YxJGRII +Salvo Marò,Nicola Zilli,2019-05-18,3,Piazza strapiena AHAHAH,/salvo.maro.33?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=20&count=32&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAbQt9J9YxJGRII +Stefano Schiaramazzi,Nicola Zilli,2019-05-18,2,"Salvo Marò guarda i video, ma non perdere i sensi",/stefano.schiaramazzi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=20&count=32&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAbQt9J9YxJGRII +Nicola Zilli,Nicola Zilli,2019-05-18,10,Salvo Marò poveretti. Siete ridotti a pubblicare foto di ore prima. Anche se va notato che l affluenza in foto voi non l avete nemmeno a comizi iniziati🤣,/nicola.zilli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=20&count=32&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAbQt9J9YxJGRII +Salvo Marò,Nicola Zilli,2019-05-18,1,"Stefano Schiaramazzi intelligentone, anche io posso fare un video con 100 persone e con la giusta angolazione far sembrare ce ne siano 5000..",/salvo.maro.33?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=20&count=32&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAbQt9J9YxJGRII +Stefano Papini,Nicola Zilli,2019-05-18,1,lei non l'ha mai vista piazza del Duomo strapiena. C'erano a malapena 10 mila persone e tanta immondizia,/stefano.papini.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=20&count=32&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAbQt9J9YxJGRII +Salvatore Mazzetti,Nicola Zilli,2019-05-18,6,"I SOLITI PIDIOTI IDIOTI SPARA CAZZATE.I VIDEO CI HANNO MOSTRATO UNA PIAZZA STRAPIENA DI GENTE.OLTRE AI QUATTRO QUAQUARAQUA' COMUNISTELLI DA STRAPAZZO PATETICI, CHE RIPETONO SEMPRE LE STESSE MINKIATE DI REGIME COMUNISTA FINO ALLA NAUSEA!!.POVERI DEMENTI. FORZAAA SALVINI E FORZA LEGA NON MOLLARE MAI E PORTI SEMPRE CHIUSI IN ITALIA",/salvatore.mazzetti.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=20&count=32&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAbQt9J9YxJGRII +Stefano Margarito,Nicola Zilli,2019-05-18,12,Salvo bacioni.,/stefano.margarito.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=20&count=32&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAbQt9J9YxJGRII +Salvatore Di Marino,Nicola Zilli,2019-05-18,5,ca.29.000 connessi alla diretta,/dimarino.salvatore?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=20&count=32&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAbQt9J9YxJGRII +Efisio E Cristina Manai,Rosaria Merola,2019-05-18,1,mai penrai ROSICA....ROSICA....e attenzione al fegato....🤣🤣🤣hai dimostrato di essere nulla visto che sei un anonimo🤣🤣🤣🤣,/efisioecristina.manai?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=20&count=127&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjfh0mqMGT2zaf +Roberto Saettini,Rosaria Merola,2019-05-18,,"Luca Hermano Armanni PERCHÉ LEI HA IL DIFETTO DELLA MIOPIA,SI METTA DEI BUONI OCCHIALI E VEDRÀ LE COSE IN MODO TOTALMENTE DIVERSO🙄🙄",/roberto.saettini.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=20&count=127&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjfh0mqMGT2zaf +Daniele Davi,Rosaria Merola,2019-05-18,,Mai Penrai viva e pensi al suo paese . Lei va contro salvini. Solo perche poi non potete più fare il cavolo che volete . Stia zitta e si vergogni.,/senzacuore13?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=20&count=127&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjfh0mqMGT2zaf +Mai Penrai,Rosaria Merola,2019-05-18,,"Efisio e Cristina Manai voi che non siete anonimi, voi che vi inchinate davanti a chi vi dice terroni e coglioni, voi che non avete un minimo di dignità, sicuramente rappresentate al meglio il nulla e siete una vergogna per la Sardegna. Che miseria umana la vostra! INNO DELLA LEGA LOMBARDA O Gesù d'amore acceso Quanti soldi abbiamo speso Per sfamare quei coglioni che si chiamano terroni .... per tirar la conclusione sulla razza del terrone che comprende quella sarda voterem lega lombarda",/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=20&count=127&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjfh0mqMGT2zaf +Francesca Colussi,Rosaria Merola,2019-05-18,,Mai Penrai stai zitto e nn offendere forse vi brucia il culo che una gran parte di noi italiani vogliamo Salvini gli altri partiti hanno fatto cose peggiori guarda come hanno ridotto il nostro paese,/francesca.colussi.921?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=20&count=127&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjfh0mqMGT2zaf +Leopoldo Della Ciana,Rosaria Merola,2019-05-18,,Vita Carella Mai Penrai non esiste profile finto,/leopoldo.dellaciana?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=20&count=127&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjfh0mqMGT2zaf +Francesca Colussi,Rosaria Merola,2019-05-18,,Alessandra Albi 👏👏👏👏👏,/francesca.colussi.921?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=20&count=127&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjfh0mqMGT2zaf +Francesca Colussi,Rosaria Merola,2019-05-18,,Daniele Davi bella questa 🤣🤣🤣,/francesca.colussi.921?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=20&count=127&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjfh0mqMGT2zaf +Francesca Colussi,Rosaria Merola,2019-05-18,,Rosaria Merola idem 👏👏👏,/francesca.colussi.921?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=20&count=127&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjfh0mqMGT2zaf +Paola Paganelli,Rosaria Merola,2019-05-18,,Mai Penrai Infatti come volevasi dimostrare i sinistri sanno solo offendere ma non sanno argomentare. Verrà il momento in cui capirete. Matteo Salvini ha affidato l'Italia e l'Europa alla Madonna: speriamo che anche voi capiate la bellezza e la smettiate di offendere e di distruggere!,/bo.paola?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=20&count=127&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjfh0mqMGT2zaf +Maura Rusticelli,Nicola Zilli,2019-05-18,3,😂😂😂😂😂,/maura.rusticelli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=30&count=32&pc=4&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQCCH-EZCbPJ9UYb +Sonia Pannunzi,Nicola Zilli,2019-05-18,,,/signorina.silvani.5494?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411724102183992&p=30&count=32&pc=4&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQCCH-EZCbPJ9UYb +Rita Massaro,Rosaria Merola,2019-05-18,,Daniele Davi Ma questa mai è extracomunitaria? Mi sa di sì e a paura,/rita.massaro.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=30&count=127&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAZr-Idocylpcnu +Saura Filtrani,Rosaria Merola,2019-05-18,,Mai Penrai il nulla lo sarete presto,/saura.filtrani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=30&count=127&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAZr-Idocylpcnu +Mai Penrai,Rosaria Merola,2019-05-18,,Rita Massaro anche lei ha sbattuto le dita sulla tastiera dimostrando a se stessa di esistere. E nient’altro. Contenta?,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=30&count=127&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAZr-Idocylpcnu +Mai Penrai,Rosaria Merola,2019-05-18,,E adesso vi abbandono alla vostra miseria umana per tifare Mahmood che rappresenta l’Italia all’Eurovision. Vai Mahmood e viva l’Italia!!!,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=30&count=127&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAZr-Idocylpcnu +Cleo Patra,Rosaria Merola,2019-05-18,,Mai Penrai lei non ha dignità che offende senza metterci la faccia. Comodo così!,/lu.to.779?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=30&count=127&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAZr-Idocylpcnu +Daniele Davi,Rosaria Merola,2019-05-18,,E philippina ma vada a filippi. E pensi al suo paese,/senzacuore13?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=30&count=127&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAZr-Idocylpcnu +Rita Caminiti,Rosaria Merola,2019-05-18,,"Rosaria Merola La sinistra, col suo odio, ha avvelenato per decenni il clima sociale italiano. È ora di cambiare musica😉",/ritacaminiti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=30&count=127&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAZr-Idocylpcnu +Cleo Patra,Rosaria Merola,2019-05-18,,Mai Penrai questo vi meritate,/lu.to.779?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=30&count=127&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAZr-Idocylpcnu +Mai Penrai,Rosaria Merola,2019-05-18,,Cleo Patra lei invece la mette la faccia 😂😂😂 quanto siete ridicoli,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=30&count=127&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAZr-Idocylpcnu +Daniele Davi,Rosaria Merola,2019-05-18,,Mai Penrai maleducata ignorante che non sa nemmeno il significato di terrone. Lei lo usa come offesa e si ricordi . Che i terroni come lì chiama lei. Sono italiani . vergognati,/senzacuore13?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=30&count=127&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAZr-Idocylpcnu +Paola Cossu,Rosaria Merola,2019-05-18,,"Mai Penrai non hanno risposte concrete sanno solo offendere,le do ragione in tutto👏👏👏",/paola.cossu.509?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=40&count=127&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBJpz9n9uVw4LWq +Massimo Sebastiani,Rosaria Merola,2019-05-18,,Mai Penrai non hai faccia ..profilo falso...e spari stronzate...hai sbagliato pagina e non dovresti essere su FB,/franco.rosati.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=40&count=127&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBJpz9n9uVw4LWq +Anita Zabaldi,Rosaria Merola,2019-05-18,,"Mai Penrai ecco ,l',utile idiolta",/anita.zabaldi.980?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=40&count=127&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBJpz9n9uVw4LWq +Federico Pavone,Rosaria Merola,2019-05-18,,Mai Penrai prendiamo che questo è il tuo pensiero,/profile.php?id=100010720783445&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=40&count=127&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBJpz9n9uVw4LWq +Mai Penrai,Rosaria Merola,2019-05-18,,Anna Machalska. Senta ragazzina dovrebbe sapere che per la maggioranza di chi scrive qui “prima gli italiani” Lei è straniera e alla prima che fa le diranno di tornarsene a casa sua. Si preoccupi per lei.,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=40&count=127&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBJpz9n9uVw4LWq +Giorgio Secci,Rosaria Merola,2019-05-18,,Mai Penrai e meglio votare a salvini che votare i comunisti che con la bandiera italiana la usano x pulire e le bandiere africane la baciono.vergognatevi comunisti razzisti anti ITALIANI,/secci.giorgio.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=40&count=127&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBJpz9n9uVw4LWq +Mai Penrai,Rosaria Merola,2019-05-18,,Nadia Paciotti lei non si sa di dove sia. Forse non lo sa neanche lei?,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=40&count=127&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBJpz9n9uVw4LWq +Efisio E Cristina Manai,Rosaria Merola,2019-05-18,,Mai Penrai menomale che la dignità la esprime lei visto a quale area appartiene,/efisioecristina.manai?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=40&count=127&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBJpz9n9uVw4LWq +Saura Filtrani,Rosaria Merola,2019-05-18,1,"Mai Penrai la dignità la conosce lei, lei pensi a votare PD, e lasci in pace chi vuole almeno provare a cambiare questa nostra povera Italia che grazie a quelli come lei ha subito un'invasione",/saura.filtrani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=40&count=127&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBJpz9n9uVw4LWq +Mai Penrai,Rosaria Merola,2019-05-18,,Daniele Davi anti italiano dillo a qualcun altro. È così triste come vi fate tutti prendere per il sedere. Pero ve lo meritate 😂,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=40&count=127&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBJpz9n9uVw4LWq +Claudio Rabascio,ROOT,2019-05-18,97,"Non c’era dimaio ... è certo , ti ha venduto per trenta denari quel juda!!! Vai avanti capitano !!! Tu sei tutti noi !!!",/claudio.rabascio.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417920052577&count=10&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAL7AaR08g39GDi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Bruschi Raniero,Claudio Rabascio,2019-05-18,1,Claudio Rabascio mi risulta il contrario quelli della lega si vendono per 30 denari,/bruschi.raniero?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417920052577&count=10&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAL7AaR08g39GDi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giancarlo Bernola,Claudio Rabascio,2019-05-18,10,"Claudio Rabascio anch 'io ho votato Salvini, e lovotero' ancora. Il Marcio, in Italia, sono i Magistrati e i Giudici. Salvini, lo sa, e non puo # far niente contro Questo Marciume.",/giancarlo.bernola.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417920052577&count=10&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAL7AaR08g39GDi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nando Adami,Claudio Rabascio,2019-05-18,1,La lega e all.ser izio di andranghedda e cammorra...salvini non.ha.palle per mollare la.criminalita organizata e I nazifascisti...,/adamo.adami.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417920052577&count=10&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAL7AaR08g39GDi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Antonio Grado,Claudio Rabascio,2019-05-18,1,Quelli.....troppo generico.....meglio fare nomi e cognomi,/antonio.grado.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417920052577&count=10&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAL7AaR08g39GDi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Francesco Furnari,Claudio Rabascio,2019-05-18,,https://www.bing.com/videos/search?view=detail&mid=9A034C7DE7D9FD945E239A034C7DE7D9FD945E23&shtp=Facebook&shid=ca2311c7-e26f-4969-836d-9b2b76eca3bc&shtk=Vm90YSBBbnRvbmlvIExhIFRyaXBwYQ%3D%3D&shdk=Vm90YSBBbnRvbmlvISBWb3RhIEFudG9uaW8h&shhk=u5KSRlWdOC6Zw1wRhhYHfAix%2BvOLT8RZegPmoVCZSTg%3D&form=VDSHFB&shth=OSH.iYS0Hzp38oOzj8xvhoVyKg&fbclid=IwAR3f_JHrYPa6P4nwYKEAiHpZs2PY8h7uuQMuagVrDpmLNGC5grT2rIjPXGI,/francescoemaria.furnari?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417920052577&count=10&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAL7AaR08g39GDi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gaetano Culosi Paglino,Claudio Rabascio,2019-05-18,2,Capitano de chè. :),/gaetano.culosi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417920052577&count=10&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAL7AaR08g39GDi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio Gossparrius Pelo Parri,Claudio Rabascio,2019-05-18,1,Nando Adami ma cosa fumi??,/giorgio.parri2?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417920052577&count=10&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAL7AaR08g39GDi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Salvatore Di Marino,Claudio Rabascio,2019-05-18,,Claudio Rabascio Di Maio deve solo imparare da Salvini Non lo ha menzionsto ne lui ne il partito,/dimarino.salvatore?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417920052577&count=10&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAL7AaR08g39GDi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gaetano Culosi Paglino,Claudio Rabascio,2019-05-18,,Salvatore Di Marino Speriamo di no.😊,/gaetano.culosi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417920052577&count=10&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAL7AaR08g39GDi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marisa Riccardi,Claudio Rabascio,2019-05-18,,Giorgio Gossparrius Pelo Parri qualcosa che lo sta avvelenando,/marisa.riccardi.92?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417920052577&count=10&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAL7AaR08g39GDi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alex D'Alessandro,Rosaria Merola,2019-05-18,,"Mai Penrai Ma fatti furbo/a, offendi e poi si scopre che non hai ne faccia ne storia e ne palle visto che nascondi la faccina con un profilo inesistente che è più falso di giuda. Troll da strapazzo.",/alex.dalessandro.63?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=50&count=127&pc=6&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA__vkj9qhdFNT- +Mai Penrai,Rosaria Merola,2019-05-18,1,"Graziano Ballabio un altro elemento che dimostra la quantità di argomenti che avete. Elegante, pacato, educato. Siete un patetico e triste nulla.",/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=50&count=127&pc=6&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA__vkj9qhdFNT- +Giuseppe Jack Capuano,Rosaria Merola,2019-05-18,,Mettere sullo stesso piano SALVINO con la DEMOCRAZIA.... E niente.... HA FATTO LA BATTUTA,/giuseppe.capuano.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=50&count=127&pc=6&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA__vkj9qhdFNT- +Mai Penrai,Rosaria Merola,2019-05-18,,Claudio Marchini anche lei sbatte le dita sulla tastiera per rispondere con argomenti scientifici😂,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=50&count=127&pc=6&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA__vkj9qhdFNT- +Alex D'Alessandro,Rosaria Merola,2019-05-18,,"Mai Penrai Siete i Troll associati che si scatenano tutti insieme come le iene, ma poi nascondendosi come i peggiori vigliacchi",/alex.dalessandro.63?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=50&count=127&pc=6&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA__vkj9qhdFNT- +Anna Machalska,Rosaria Merola,2019-05-18,,Caterina Pignocco solito sono tranquilla ma quando ci vuole divento così. Sono un Scorpione.,/anna.machalska.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=50&count=127&pc=6&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA__vkj9qhdFNT- +Anna Machalska,Rosaria Merola,2019-05-18,,,/anna.machalska.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=50&count=127&pc=6&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA__vkj9qhdFNT- +Gianpietro Panarari,Rosaria Merola,2019-05-18,1,Mai Penrai ci metta la faccia se ha il coraggio ..o si vergogna di se stesso,/luca.panarari.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=50&count=127&pc=6&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA__vkj9qhdFNT- +Lia Bani,Rosaria Merola,2019-05-18,,Mai Penrai E basta su.... 😴,/lia.bani.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=50&count=127&pc=6&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA__vkj9qhdFNT- +Rosanna Gioacchini,Rosaria Merola,2019-05-18,,Mai Penrai questa non è la tua pagina vai ad elucubrare altrove.,/rosanna.gioacchini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=60&count=127&pc=7&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBjiqt9rTLZJxY1 +Mai Penrai,Rosaria Merola,2019-05-18,,"Signora Gioacchini Rosanna anche lei da brava democratica leghista chi dissente cerca di eliminarlo invece di rispondergli sulla sostanza. Pur essendo ovvio che lei non saprebbe cosa rispondere sulla sostanza, il voler eliminare chi dissente lo fa chi è fascista dentro.",/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=60&count=127&pc=7&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBjiqt9rTLZJxY1 +Rosanna Gioacchini,Rosaria Merola,2019-05-18,,"Mai Penrai perché non ci metti la faccia, noi ce la mettiamo. Sei solo una troll quindi non meriti considerazione",/rosanna.gioacchini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=60&count=127&pc=7&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBjiqt9rTLZJxY1 +Anna Pinerolo,Rosaria Merola,2019-05-18,,Rosaria Merola sono d'accordissimo con te.....,/profile.php?id=100009055828312&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=60&count=127&pc=7&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBjiqt9rTLZJxY1 +Karima Anna Alba Ederle,Rosaria Merola,2019-05-18,,Perché non ci vai tu a cagare sulle ortiche Graziano ballabbio,/annamaria.sauli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=60&count=127&pc=7&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBjiqt9rTLZJxY1 +Mai Penrai,Rosaria Merola,2019-05-18,,Carla Algerab l’eleganza e la correttezza con la quale si esprime la qualificano per quello che è. Problema suo.,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=60&count=127&pc=7&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBjiqt9rTLZJxY1 +Karima Anna Alba Ederle,Rosaria Merola,2019-05-18,,,/annamaria.sauli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=60&count=127&pc=7&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBjiqt9rTLZJxY1 +Mercedes Turridano,Rosaria Merola,2019-05-18,,Mai Penrai le persone intelligenti hanno la capacità di migliorare... la vita è una continua evoluzione. Solo i cretini rimangono sempre con i loro paraocchi.,/mercedes.turridano?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=60&count=127&pc=7&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBjiqt9rTLZJxY1 +Karima Anna Alba Ederle,Rosaria Merola,2019-05-18,1,Mai penrai non dar via del tuo quello che hai scritto e dentro di te .hai una serpe in seno,/annamaria.sauli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=60&count=127&pc=7&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBjiqt9rTLZJxY1 +Mai Penrai,Rosaria Merola,2019-05-18,2,Signora Rossana Zandinella non fu Bossi a portare una bambola gonfiabile su un palco. Non è stato Bossi a far sospendere un’insegnante in Sicilia mentre nessun provvedimento è stato preso per un insegnante che si proclama a favore del nazismo. Non è stato Bossi a chieder di togliere lenzuola di chi dissente dalle piazze.,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=60&count=127&pc=7&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBjiqt9rTLZJxY1 +Paola Iommazzo,ROOT,2019-05-18,74,"Non una televisione,una sola che ne abbia parlato o che abbia trasmesso questo spettacolo..facciamo paura a molti,a tutti..avanti tutta capitano",/paola.iommazzo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877001434758&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCQ2zn0U_crmEj_&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Barbara Sacchini,Paola Iommazzo,2019-05-18,,Non vedi Tgcom,/barbara.sacchini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877001434758&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCQ2zn0U_crmEj_&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Donatella Boscolo,Paola Iommazzo,2019-05-18,,E chi se ne frega e aspetta! il parlar male che sentiremo in TV e nei giornali,/donatella.boscolo.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877001434758&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCQ2zn0U_crmEj_&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Donatella Boscolo,Paola Iommazzo,2019-05-18,,Si si lo sentiamo💚💚💚💚💚😚😚😚😚😚,/donatella.boscolo.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877001434758&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCQ2zn0U_crmEj_&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cinzia Vivaldi,Paola Iommazzo,2019-05-18,,Paola Iommazzo su tg Com 24 c'era...,/cinzia.vivaldi.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877001434758&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCQ2zn0U_crmEj_&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Iommazzo,Paola Iommazzo,2019-05-18,,Non ho visto tg com 24.grazie per l'info,/paola.iommazzo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877001434758&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCQ2zn0U_crmEj_&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Grazia Quintavalla,Paola Iommazzo,2019-05-18,,Per non farvi fare brutta figura,/grazia.quintavalla.37?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877001434758&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCQ2zn0U_crmEj_&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Iommazzo,Paola Iommazzo,2019-05-18,1,Grazia Quintavalla dobbiamo ridere?Che faccia tosta che hai a smentire il tutto,/paola.iommazzo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877001434758&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCQ2zn0U_crmEj_&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sara Antonella Casacci,Rosaria Merola,2019-05-18,3,"Mai Penrai manco ci metti la faccia, sei un troll :) bacioni!",/jolandalacorsara?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=70&count=127&pc=8&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB4aYRu8BviH1yV +Maria Rita Martinelli,Rosaria Merola,2019-05-18,3,Mai Penrai io nn sono meridionale. Cmnq. C'è la spieghi lei la dignità visto che ne è così piena.,/profile.php?id=100009133892397&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=70&count=127&pc=8&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB4aYRu8BviH1yV +Gisella Puterio,Rosaria Merola,2019-05-18,4,Mai Penrai i sinistrati e maleducati erano solo in fondo alla piazza. Scoppiate d'invidia questa è la verità. Non siete in grado di manifestare civilmente e vi attaccate solo ad idiozie.,/gisella.puterio.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=70&count=127&pc=8&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB4aYRu8BviH1yV +Claudio Marchini,Rosaria Merola,2019-05-18,2,Mai Penrai ma la smetta di dir cavolate,/claudio.marchini.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=70&count=127&pc=8&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB4aYRu8BviH1yV +Graziano Ballabio,Rosaria Merola,2019-05-18,2,Mai Penrai vai a cagare sulle ortiche.,/graziano.ballabio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=70&count=127&pc=8&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB4aYRu8BviH1yV +Caterina Pignocco,Rosaria Merola,2019-05-18,,Anna Machalska sei una grande,/caterina.pignocco?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=70&count=127&pc=8&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB4aYRu8BviH1yV +Saschia Triberti,Rosaria Merola,2019-05-18,,Bravissima ok,/saschia.triberti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=70&count=127&pc=8&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB4aYRu8BviH1yV +Carla Algerab,Rosaria Merola,2019-05-18,1,Mai Penrai...👀...,/carla.balgera?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=70&count=127&pc=8&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB4aYRu8BviH1yV +Fernando De Grandis,Rosaria Merola,2019-05-18,,Democratico quello che sospende una professoressa!....molto democratico!...😂,/degrandisfernando62?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=70&count=127&pc=8&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB4aYRu8BviH1yV +Dino Alberici,Rosaria Merola,2019-05-18,4,Mai Penrai e comunque se non ti piace l'Italia puoi sempre tornatene a casa tua,/dino.alberici.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=80&count=127&pc=9&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCX8_IUHoq6IA6j +Mariarosa Tarabella,Rosaria Merola,2019-05-18,5,"Mai Penrai uguale a te. Con persone nulle come te, è tempo perso commentare.....",/mariarosa.tarabella.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=80&count=127&pc=9&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCX8_IUHoq6IA6j +Mai Penrai,Rosaria Merola,2019-05-18,,Signora Cassandra Miranda corna? Le corna le avete voi. E l’eleganza con la quale vi presentate non necessità commenti.,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=80&count=127&pc=9&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCX8_IUHoq6IA6j +Mai Penrai,Rosaria Merola,2019-05-18,,Anche la signora Milena Sarcoma sfoga la sua impotenza sbattendo le dita sulla tastiera e dicendo niente. Chissà se era così scandalizzata come donna quando il leader della Lega umiliava tutte le donne portando una bambola gonfiabile su un palco durante un comizio. Dignità questa sconosciuta.,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=80&count=127&pc=9&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCX8_IUHoq6IA6j +Rossana Zandinella,Rosaria Merola,2019-05-18,7,Mai Penrai nella vita si può sempre cambiare idea. Voi ora siete nella fase istigazione all'omicidio... Auguri di morte... Salvini a testa in giù ecc. Quindi per favore....lei e quelli come lei siete gli ultimi che possono fare la morale agli altri.Altra cosa... A me pare che lei tiri fuori cose preistoriche più da Bossi. Bossi non mi é mai piaciuto ma posso dire una cosa. Era un gran provocatore e lo faceva apposta. Se veramente avesse pensato dei meridionali ciò che diceva non avrebbedi certo sposato una SICILIANA! Comunque se la fa sentire meglio si attacchi ancora a queste cose senza valore e importanza. Io sono democratica a differenza di altri che con le parola libertà e democrazia si riempiono solo la bocca essendo per loro a senso unico e le auguro una buona serata 😄,/rossana.zandinella?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=80&count=127&pc=9&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCX8_IUHoq6IA6j +Anna Machalska,Rosaria Merola,2019-05-18,,,/anna.machalska.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=80&count=127&pc=9&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCX8_IUHoq6IA6j +Anna Machalska,Rosaria Merola,2019-05-18,2,Mai Penrai allora sei anche tu un misero troll,/anna.machalska.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=80&count=127&pc=9&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCX8_IUHoq6IA6j +Mai Penrai,Rosaria Merola,2019-05-18,,Anche la signora Tetella Facciolla ha sbattuto un po’ le dita sulla tastiera per dimostrare a se stessa di esistere e non ha detto niente di concreto. Anche per lei l’inizio e la conclusione della preghiera padana: “O Gesù d'amore acceso Quanti soldi abbiamo speso Per sfamare quei coglioni che si chiamano terroni ... per tirar la conclusione sulla razza del terrone che comprende quella sarda voterem lega lombarda” E lei li difende e li vota! Dov’ la sua dignità di donna e di sarda? Che tristezza questa miseria umana.,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=80&count=127&pc=9&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCX8_IUHoq6IA6j +Anna Machalska,Rosaria Merola,2019-05-18,1,Mai Penrai guarda un po' GIF,/anna.machalska.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=80&count=127&pc=9&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCX8_IUHoq6IA6j +RGiuseppe Cit,ROOT,2019-05-18,66,attenzione perche' stasera su TG 1-2-3 - L7 la nove tgsky e li mortarciii loro.... faranno solo vedere i 4 sfigati PDidioti che fischiavano,/CGrgiuseppe?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&count=19&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC3Kv2V6X001w5M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ivana Capella,RGiuseppe Cit,2019-05-18,2,Lino Boschi assolutamente no .Noi siamo forti e uniti ! bye bye,/ivana.capella.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&count=19&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC3Kv2V6X001w5M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna Tanimi,RGiuseppe Cit,2019-05-18,,E chi li guarda!! W i social.,/anna.tanimi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&count=19&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC3Kv2V6X001w5M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tiziana Finetti,RGiuseppe Cit,2019-05-18,,RGiuseppe Cit Verissimo lo fanno sempre sti rosiconi..,/tiziana.finetti.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&count=19&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC3Kv2V6X001w5M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Salvatore Mazzetti,RGiuseppe Cit,2019-05-18,2,"RGiuseppe Cit MA INFATTI SARÀ PROPRIO COSÌ!!.LE TV DI REGIME COMUNISTA FARANNO VEDERE UNA PIAZZA SEMI VUOTA PRIMA CHE SI RIEMPISSE FINO ALL'ORLO, E POI SPARERANNO LE SOLITE CAZZATE DI REGIME PIDIOTA!!.POVERELLI,SONO CONSCI CHE PERDERANNO ALLA GRANDE.COMUNISTI,MA ANNATE A FANCULO VOI E CHI VI VESTE LA MATTINA. FORZAAA SALVINI E FORZA LEGA NON MOLLARE MAI E PORTI SEMPRE CHIUSI IN ITALIA",/salvatore.mazzetti.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&count=19&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC3Kv2V6X001w5M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luca Setti,RGiuseppe Cit,2019-05-18,,Già fatto su Italia 1 il TG un secondo di salvini e il resto zingaretti e la mummia silvio,/luca.setti.165?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&count=19&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC3Kv2V6X001w5M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +RGiuseppe Cit,RGiuseppe Cit,2019-05-18,,Luca Setti ormai mummia e montalbano fanno cu ..o e camica,/CGrgiuseppe?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&count=19&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC3Kv2V6X001w5M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cozzi Gabriella,RGiuseppe Cit,2019-05-18,1,RGiuseppe Cit basta con guardarli... io mi sono goduta la diretta su fb e mi basta 👍🙏🍀,/cozzi.gabriella?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&count=19&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC3Kv2V6X001w5M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Meris Curnis,RGiuseppe Cit,2019-05-18,,Lino boschi.... Ahahahah ahahahah poraccio ahah se sei messo male,/meris.curnis.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&count=19&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC3Kv2V6X001w5M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Salvatore Di Marino,RGiuseppe Cit,2019-05-18,,RGiuseppe Cit Aggiungi gli striscioni,/dimarino.salvatore?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&count=19&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC3Kv2V6X001w5M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Laura Machieraldo,RGiuseppe Cit,2019-05-18,,RGiuseppe Cit sicuro,/laura.machieraldo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&count=19&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC3Kv2V6X001w5M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimo Belardo,Rosaria Merola,2019-05-18,,Daniele Davi è la Rai che fa pen(a),/profile.php?id=100008776747568&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=90&count=127&pc=10&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCE8D3H4g5WD8tn +Emmi Jeijei,Rosaria Merola,2019-05-18,6,Mai Penrai lei è l'esempio lampante di come la sinistra non fa altro che offendere. E se avesse ascoltato prima di parlare a vanvera saprebbe che non è stato offeso nessuno. Altro che parlare di dignità,/emmi.jeijei.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=90&count=127&pc=10&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCE8D3H4g5WD8tn +Moretti Livio,Rosaria Merola,2019-05-18,10,Mai Penrai voi compagni siete avezzi ad usare la tastiera per sfogare la vostra rabbia... Infatti sono voi augurare la morte solo voi volete impiccare la gente a testa in giù... Oramai siete il nulla non avrete nessun futuro e vi sfogate nel solo modo che conoscete...,/livio.moretti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=90&count=127&pc=10&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCE8D3H4g5WD8tn +Maria Fontana,Rosaria Merola,2019-05-18,8,Mai Penrai se te rode usa il borotalco,/maria.fontana.3158?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=90&count=127&pc=10&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCE8D3H4g5WD8tn +Anna Machalska,Rosaria Merola,2019-05-18,12,Mai Penrai Senti ragazza: se sei straniera come me non osare dire ai Italiani che sono le nullità. Così offendi in modo ignorante tutti noi europei che vogliamo cambiare come ha spiegato in modo semplice ed emozionante Ministro Salvini. La faccenda riguarda la UE. Forse non sai che tutto questo fa parte di campagna elettorale. E ITALIA e un paese democratico. Anche se tanti non piace. Io sono Polacca e le tue parole offendono anche me! Ps Dietro le tue parole si sente tanto odio verso paese che di sicuro ti ha dato da mangiare! Allora rispettalo !,/anna.machalska.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=90&count=127&pc=10&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCE8D3H4g5WD8tn +Claudio Berlinghieri,Rosaria Merola,2019-05-18,6,"per i tossici disoccupati e alcolizzati falliti dei centri sociali, maloooooox",/claudio.berlinghieri.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=90&count=127&pc=10&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCE8D3H4g5WD8tn +Simone De Fusin Prosdocimi,Rosaria Merola,2019-05-18,5,Rosaria Merola il termine fascista che alla sinistra piace tanto morto 70 anni fa..... oggi appartiene proprio a loro.,/profile.php?id=100009312822788&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=90&count=127&pc=10&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCE8D3H4g5WD8tn +Lucy Battistessa,Rosaria Merola,2019-05-18,1,Luca Hermano Armanni oculista subito,/lucy.battitessa?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=90&count=127&pc=10&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCE8D3H4g5WD8tn +Dino Alberici,Rosaria Merola,2019-05-18,4,Mai Penrai ma uno con un profilo così falso come il tuo non credo di averlo mai visto sai?,/dino.alberici.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=90&count=127&pc=10&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCE8D3H4g5WD8tn +Mai Penrai,Rosaria Merola,2019-05-18,,Vita Carella pugliese. E con seri problemi di dignità. Di lei che viene dal “tacco” questo dichiara la preghiera della Lega:” O Gesù d'amore acceso Quanti soldi abbiamo speso Per sfamare quei coglioni che si chiamano terroni“.,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=90&count=127&pc=10&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCE8D3H4g5WD8tn +Domenico Gualandris,RGiuseppe Cit,2019-05-18,2,Anche secondo me,/domenico.gualandris.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQCCWDxzMjlshykI +Giancarlo Cao,RGiuseppe Cit,2019-05-18,2,hanno tanta di quella rabbia i sinistroidi che putano veleno noi siamo più forti,/giancarlo.cao?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQCCWDxzMjlshykI +Giancarlo Cao,RGiuseppe Cit,2019-05-18,,sputano,/giancarlo.cao?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQCCWDxzMjlshykI +Lino Boschi,RGiuseppe Cit,2019-05-18,2,"Poveri leghisti, quanto siete messi male.... Mania di persecuzione????",/lino.boschi.35?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQCCWDxzMjlshykI +RGiuseppe Cit,RGiuseppe Cit,2019-05-18,2,ma va a cag.... LIno nel Bosco,/CGrgiuseppe?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQCCWDxzMjlshykI +Ivana Barbieri,RGiuseppe Cit,2019-05-18,,...come sempre 😜,/ivana.barbieri.54?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQCCWDxzMjlshykI +Massimo Pozzi,RGiuseppe Cit,2019-05-18,2,Lino Boschi rosica e un po' di Malox....,/massimo.pozzi.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQCCWDxzMjlshykI +Michele Chicco,RGiuseppe Cit,2019-05-18,2,Lino Boschi oppure voi boldriniani malati di spappolamento di fegato cronico?,/michele.chicco.509?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726758850393&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQCCWDxzMjlshykI +Daniele Davi,Rosaria Merola,2019-05-18,3,Mai Penrai noi sei italiana .,/senzacuore13?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=100&count=127&pc=11&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA87Qe3643lseUm +Daniele Davi,Rosaria Merola,2019-05-18,3,Pen Rai la penna della rai.😂😂😂😂😂,/senzacuore13?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=100&count=127&pc=11&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA87Qe3643lseUm +Claudio Marchini,Rosaria Merola,2019-05-18,2,quelli che offendevano erano in fondo piazza,/claudio.marchini.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=100&count=127&pc=11&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA87Qe3643lseUm +Paola Ragnolini,Rosaria Merola,2019-05-18,,,/paola.ragnolini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=100&count=127&pc=11&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA87Qe3643lseUm +Nadia Paciotti,Rosaria Merola,2019-05-18,5,Vedo che aumentano sempre di più gli insulti e contrasti da parte di stranieri venuti in Italia... Certo gli fa più comodo tifare sinistra...,/nadia.paciotti.37?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=100&count=127&pc=11&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA87Qe3643lseUm +Carla Zaganelli,Rosaria Merola,2019-05-18,1,"Mai Penrai Non ha dignità che fa finta di non vedere e sentire e quindi di cambiare !! Terroni e polentoni ,ma chissenefrega ,si guarda avanti !Ma........se tu sei filippino ,che ne sai ?Intanto MOSTRA LA FACCIA !",/profile.php?id=100007065160879&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=100&count=127&pc=11&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA87Qe3643lseUm +Mai Penrai,Rosaria Merola,2019-05-18,1,Mariarosa Tarabella lei che starnazza si esprime solo come le oche o riesce anche a scrivere in italiano una frase con argomenti? Patetica😂😂😂,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=100&count=127&pc=11&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA87Qe3643lseUm +Nadia Paciotti,Rosaria Merola,2019-05-18,2,Mai Penrai lei è filippino quindi anche extra europeo... Per non dire clandestino..,/nadia.paciotti.37?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=100&count=127&pc=11&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA87Qe3643lseUm +Serena Ferretti,Rosaria Merola,2019-05-18,,https://www.lettera43.it/it/articoli/politica/2019/05/14/salvini-striscioni-renzi/232075/,/serena.ferretti.3766?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=100&count=127&pc=11&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA87Qe3643lseUm +Vita Carella,Rosaria Merola,2019-05-18,6,Mai Penrai cretina,/profile.php?id=100008381524283&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=110&count=127&pc=12&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBbBxCmNE9dnm58 +Mariarosa Tarabella,Rosaria Merola,2019-05-18,14,"Mai Penrai bla, bla, quaraquaqua, intanto fatti gli occhi.. 😂😂😂😂😂😂",/mariarosa.tarabella.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=110&count=127&pc=12&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBbBxCmNE9dnm58 +Cassandra Miranda,Rosaria Merola,2019-05-18,19,Mai Penrai come diceva la mia saggia nonna : Avete perso i buoi e adesso andate cercando le corna. CHI È CAUSA DEL SUO MAL PIANGA SE STESSO. Stai sereno.,/cassandra.miranda.5872?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=110&count=127&pc=12&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBbBxCmNE9dnm58 +Massimo Belardo,Rosaria Merola,2019-05-18,13,Mai Penrai mettici la faccia...vigliacco,/profile.php?id=100008776747568&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=110&count=127&pc=12&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBbBxCmNE9dnm58 +Milena Sarvona,Rosaria Merola,2019-05-18,4,"X fortuna che ci siete voi, che invece la dignità la conoscete benissimo.... Patetici",/milena.sarvona?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=110&count=127&pc=12&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBbBxCmNE9dnm58 +Rosaria Merola,Rosaria Merola,2019-05-18,22,"Mai Penrai innanzi tutto informati bene,prima di sparare cavolate Anche Gori ha chiamato la DIGOS? Comunque ,non sai che ti sei persa. Imparate come si fa politica. Si possono esprimere le proprie idee , con correttezza,come fanno le persone per bene.Nervosetti da quelle parti? VISTO CHE NON HAI CAPITO BENE IL MIO MESSAGGIO,VORREI PRECISARE: IO NON SONO MERIDIONALE! IO SONO ORGOGLIOSAMENTE ITALIANA. DIFENDO LA MIA PATRIA LA MIA AGRICOLTURA LA MIA PESCA LE MIE INDUSTRIE LE MIE ORIGINI LA MIA CIVILTÀ LA DEMOCRAZIA. QUANDO SENTO L""INNO D'ITALIA ,MI EMOZIONO, MI DISPIACE,QUANDO VIENE SOSTITUITO DA ""BELLA CIAO. NON HO BISOGNO DI OFFENDERTI ,PERCHÉ NON CONDIVIDI IL MIO PENSIERO. NON METTO STRISCIONI ALLA FINESTRA,PER AUGURARTI DI MORIRE. MI FA ORRORE CHI LO FA. RISPETTO LE FORZE ARMATE, CHE IL PRESIDENTE DEL CONSIGLIO,HA UMILIATO CON BATTUTINE FUORI POSTO. RISPETTO LE FORZE DELL'ORDINE CHE OGNI GIORNO VENGONO AGGREDITE,SENZA POTERSI DIFENDERE. VOGLIO UN'ITALIA DIVERSA PER QUESTO VOTERÒ SALVINI.!!!!!",/rosaria.merola.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=110&count=127&pc=12&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBbBxCmNE9dnm58 +Luca Hermano Armanni,Rosaria Merola,2019-05-18,1,Be a me non sembrano molti,/lucahermano.armanni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=110&count=127&pc=12&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBbBxCmNE9dnm58 +Daniele Davi,Rosaria Merola,2019-05-18,8,Mai Penrai ma come si permette maleducata anti italiana si vergogni,/senzacuore13?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=110&count=127&pc=12&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBbBxCmNE9dnm58 +Raffaele Monaco,ROOT,2019-05-18,55,La sinistra ha creato un esercito di stranieri pronti ad essere aizzati contro Italia ed italiani con la scusa dell'emergenza umanitaria farlocca.,/MonacoRaf?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325210284821358&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCZcy64KnF1jRYX&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lidia Fumagalli,Raffaele Monaco,2019-05-18,2,Temo possa essere così.,/lidia.fumagalli.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325210284821358&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCZcy64KnF1jRYX&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Grassi Annamaria,Raffaele Monaco,2019-05-18,2,Raffaele Monaco hai ragione anc'io la penso come te😠,/grassi.annamaria.98?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325210284821358&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCZcy64KnF1jRYX&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carla Algerab,Rosaria Merola,2019-05-18,4,Verissimooooo !,/carla.balgera?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=120&count=127&pc=13&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA24xDcH-LGIAFi +Mai Penrai,Rosaria Merola,2019-05-18,43,Signora Rosaria Merola di chi parla? Di quello che portava bambole gonfiabili sui palchi e ordina alla digos di togliere lenzuola e cancellare video in cui si esprime dissenso? Ve la suonate e ve la cantate. Del resto voi meridionali vi chiamava terroni e coglioni fino a ieri e adesso lo votate. Non sapete cosa sia la dignità.,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=120&count=127&pc=13&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA24xDcH-LGIAFi +Alessandra Albi,Rosaria Merola,2019-05-18,27,Certo da te la dignità non si potrà imparare MaiPenrai,/alessandra.albi.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=120&count=127&pc=13&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA24xDcH-LGIAFi +Tetella Facciolla,Rosaria Merola,2019-05-18,8,Rosaria Merola brava!!!! Proprio così!!¡,/tetella.facciolla?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=120&count=127&pc=13&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA24xDcH-LGIAFi +Mai Penrai,Rosaria Merola,2019-05-18,10,Signora Alessandra Albi ha qualche argomento per smentire quanto ho scritto? Ho l’impressione che abbia usato la tastiera solo per scaricare la sua frustrazione causata dal non avere proprio nulla da ribattere sui fatti che ho riportato. Siete il nulla.,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537678155&p=120&count=127&pc=13&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA24xDcH-LGIAFi +Сашо Начовски,ROOT,2019-05-18,51,Grande sostegno e accoglienza per il miglior politico in Europa. In avanti Salvini. Saluti dalla Repubblica di Macedonia 🇲🇰🇮🇹,/saso.nacovski?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438428660051503&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCmGCG_XIWmQkjd&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loreta Prenz,Сашо Начовски,2019-05-18,,Zdravo i sve najbolje iz Milana,/loreta.prenz?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438428660051503&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCmGCG_XIWmQkjd&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loreta Prenz,Сашо Начовски,2019-05-18,,Živjela Makedonija !,/loreta.prenz?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438428660051503&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCmGCG_XIWmQkjd&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Grassi Annamaria,Сашо Начовски,2019-05-18,,Сашо Начовски 👍👍💟,/grassi.annamaria.98?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438428660051503&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCmGCG_XIWmQkjd&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nunzio Marchese,ROOT,2019-05-18,447,Da siciliano lavoratore onesto sempre votato lega la nostra terra con i principi della laga non c'è ne per nessuno... Il 26 maggio per favore sbaraziamoci di questa zavorra chiamata 5 stelle e andiamo con Giorgia Meloni,/profile.php?id=100006700753460&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&count=53&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDaUp7DNcgzdopN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Immormino,Nunzio Marchese,2019-05-18,,"Bruno Sorbelli il principio dei 5 stelle qual è, regalare il reddito a chi lavora in nero alla faccia di chi lavora onestamente?",/maria.immormino.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&count=53&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDaUp7DNcgzdopN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carla Carpignano,Nunzio Marchese,2019-05-18,,"Nunzio Marchese ,OK,speriamo!!!!!👏👏👍👍",/profile.php?id=100015173807698&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&count=53&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDaUp7DNcgzdopN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Fregnan,Nunzio Marchese,2019-05-18,,Nunzio Marchese mavaffanculo,/profile.php?id=100009618676211&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&count=53&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDaUp7DNcgzdopN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Libero Bianchi,Nunzio Marchese,2019-05-18,,Nunzio Marchese un siciliano che vota lega è traumatico....,/profile.php?id=100009487098778&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&count=53&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDaUp7DNcgzdopN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna Tussellino,Nunzio Marchese,2019-05-18,,Sei un grande 🙌,/anna.tussellino?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&count=53&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDaUp7DNcgzdopN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gaetano Valenti,Nunzio Marchese,2019-05-18,,Ma va caca,/gaetano.valenti.3954?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&count=53&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDaUp7DNcgzdopN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gaetano Valenti,Nunzio Marchese,2019-05-18,,Sono convinti che Salvini non sia più razzista ....hanno dimenticato i cori che che faceva con la sua cricca,/gaetano.valenti.3954?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&count=53&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDaUp7DNcgzdopN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Enrico Maria Ferrari,Nunzio Marchese,2019-05-18,,Nunzio Marchese 👏👏👏👏👏👏👏👏👏,/enricomaria.ferrari.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&count=53&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDaUp7DNcgzdopN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Francesco Pio Sorrentino,Nunzio Marchese,2019-05-18,,Salvini ha sempre schifato il sud e quindi anche i siciliani. È da stupidi votarlo,/pio.sorrentino.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&count=53&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDaUp7DNcgzdopN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Dario Domenico Di Natale,Nunzio Marchese,2019-05-18,,E con quale maggioranza governi? Sentiamo paisanu...,/ciavulazzu?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=10&count=53&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjgIxXxX2Rzmm_ +SunTechnology Produzione Pannelli Fotovoltaici,Nunzio Marchese,2019-05-18,7,Nunzio Marchese,/profile.php?id=100001929736086&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=10&count=53&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjgIxXxX2Rzmm_ +Gaetano Culosi Paglino,Nunzio Marchese,2019-05-18,,"Riccio Pulié ma vai affaculo pure tu già che ci sei,😂😂😂",/gaetano.culosi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=10&count=53&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjgIxXxX2Rzmm_ +Lory Carrassi,Nunzio Marchese,2019-05-18,1,Nunzio Marchese assolutamente d'accordo..governo Meloni Salvini e l'Italia rialza la testa!!!,/loryebasta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=10&count=53&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjgIxXxX2Rzmm_ +Bruno Sorbelli,Nunzio Marchese,2019-05-18,1,Principi della lega? e quali sarebbero ? incassare rimborsi elettorali senza averne diritto parlare solo di immigrati come se fosse l'unico problema in Italia ? candidarsi in europa sapendo che non ci andrai mai nemmeno se eletto ? e questi sarebbero i principi . Da siciliano ti dico che mi fanno schifo le persone che antepongono i principi che non si hanno ignorando la dignità.,/bruno.sorbelli.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=10&count=53&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjgIxXxX2Rzmm_ +Gaetano Culosi Paglino,Nunzio Marchese,2019-05-18,,Riccio Pulié Quale sintassi la ripassi lei la grammatica legga bene cosa ha scritto prima di insultare gli altri.😊,/gaetano.culosi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=10&count=53&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjgIxXxX2Rzmm_ +Elisabetta Ghini,Nunzio Marchese,2019-05-18,1,Nunzio Marchese sono assolutamente d'accordo.,/elisabetta.ghini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=10&count=53&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjgIxXxX2Rzmm_ +Maria Immormino,Nunzio Marchese,2019-05-18,1,Nunzio Marchese purtroppo regalando soldi al sud ai lavoratori in nero con il reddito di cittadinanza i 5 stelle si sono COMPRATI I VOTI,/maria.immormino.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=10&count=53&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjgIxXxX2Rzmm_ +Rachele Schiavon,Nunzio Marchese,2019-05-18,,Nunzio Marchese grande Nunzio uno di noi....ma fallo capire anche ai tuoi conterranei,/rachele.schiavon.543?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=10&count=53&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjgIxXxX2Rzmm_ +Gigliola Bonan,Nunzio Marchese,2019-05-18,,Nunzio Marchese 👍👍👍👍,/profile.php?id=100009722748463&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=10&count=53&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCjgIxXxX2Rzmm_ +Fabio Damassa,ROOT,2019-05-18,46,"I rosiconi sono pregati di rosicare nelle sedi pd, 5 stalle, centri asociali e altri luoghi ameni.....",/fabio.damassa?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590875618101563&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7KWGZMP2dRoJp&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alessandra Bartaloni,Fabio Damassa,2019-05-18,2,Fabio Damassa grande,/alessandra.bartaloni.77?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590875618101563&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7KWGZMP2dRoJp&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ale Ianna,Fabio Damassa,2019-05-18,,Fabio Damassa 👏👏👏👏👏👏👏👏👍👍👍👍,/ale.ianna.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590875618101563&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7KWGZMP2dRoJp&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Walter Martini,Nunzio Marchese,2019-05-18,1,Nicholas Campelli per uno che ha la faccia di maccccccaron cosa vuoi aspettarti,/martini.walter?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=20&count=53&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQD7CnJJJrHrgjJ3 +Enzina Bonaccord Delair,Nunzio Marchese,2019-05-18,4,Nunzio Marchese vergognati votando lega voti berlusca .siete molto allergici allo spazza corrotti vero ?,/profile.php?id=1590092297&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=20&count=53&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQD7CnJJJrHrgjJ3 +Massimo Sebastiani,Nunzio Marchese,2019-05-18,,Enzina Bonaccord Delair,/franco.rosati.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=20&count=53&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQD7CnJJJrHrgjJ3 +Giacomo Cuticchio,Nunzio Marchese,2019-05-18,6,"Da siciliano ti posso dire che hai la memoria dei pesciolini rossi, 2 giorni e poi dimenticano 👎",/giacomo.cuticchio.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=20&count=53&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQD7CnJJJrHrgjJ3 +Sara Leonardi,Nunzio Marchese,2019-05-18,,Lucia Bellini tanto seria che ha votato la legge Fornero,/sara.leonardi.5454?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=20&count=53&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQD7CnJJJrHrgjJ3 +Riccio Pulié,Nunzio Marchese,2019-05-18,,Gaetano Culosi Paglino meglio che tu ripassi grammatica e sintassi italiane,/profile.php?id=100011725404571&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=20&count=53&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQD7CnJJJrHrgjJ3 +Romina Scarpa,Nunzio Marchese,2019-05-18,1,Marco Luca sapessi come parlano i siciliani che vivono al nord!!!!! Solo chi ci vive dove governa la lega può confermare e sentire i siciliani dire lega a vita è un onore.,/romina.scarpa.144?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=20&count=53&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQD7CnJJJrHrgjJ3 +Andrea Pillinini,Nunzio Marchese,2019-05-18,2,e niente...fa gia ridere cosi!,/andrea.pillinini.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=20&count=53&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQD7CnJJJrHrgjJ3 +Gaetano Culosi Paglino,Nunzio Marchese,2019-05-18,3,"Lei è corto di memoria,lei non sa che questa persona che sta inalzanzo c'è la pure con noi Teron,ho non si ricorda.???",/gaetano.culosi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=30&count=53&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB54mamYyaeg0gT +Fernando De Grandis,Nunzio Marchese,2019-05-18,4,Parla per te!...non per tutti i Siciliani!...,/degrandisfernando62?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=30&count=53&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB54mamYyaeg0gT +Maria Grazia Valentini,Nunzio Marchese,2019-05-18,2,Nunzio Marchese grande Nunzio.,/maria.g.valentini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=30&count=53&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB54mamYyaeg0gT +Gaetano Culosi Paglino,Nunzio Marchese,2019-05-18,1,Metti la provenienza di dove sei e ne discutiamo. :),/gaetano.culosi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=30&count=53&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB54mamYyaeg0gT +Ugo Della Costanza,ROOT,2019-05-18,38,Eliminiamo i 5 stelle... Forza Capitano!!! Tu e la Meloni..!!!,/ugo.dellacostanza?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417846719251&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDf7RYiM9R65626&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carmine Ende,Ugo Della Costanza,2019-05-18,1,"per adesso non si può fare perchè cadrebbe il governo e i komunisti tornerebbero (ancora una volta da non-eletti) al potere a farsi gli ""affari"" clandestini...ogni cosa a suo tempo, tranquilli!",/carmine.ende.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417846719251&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDf7RYiM9R65626&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Francesco Furnari,Ugo Della Costanza,2019-05-18,,https://www.bing.com/videos/search?view=detail&mid=9A034C7DE7D9FD945E239A034C7DE7D9FD945E23&shtp=Facebook&shid=ca2311c7-e26f-4969-836d-9b2b76eca3bc&shtk=Vm90YSBBbnRvbmlvIExhIFRyaXBwYQ%3D%3D&shdk=Vm90YSBBbnRvbmlvISBWb3RhIEFudG9uaW8h&shhk=u5KSRlWdOC6Zw1wRhhYHfAix%2BvOLT8RZegPmoVCZSTg%3D&form=VDSHFB&shth=OSH.iYS0Hzp38oOzj8xvhoVyKg&fbclid=IwAR3f_JHrYPa6P4nwYKEAiHpZs2PY8h7uuQMuagVrDpmLNGC5grT2rIjPXGI,/francescoemaria.furnari?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417846719251&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDf7RYiM9R65626&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucia Bellini,Nunzio Marchese,2019-05-18,13,"Mariolina, la Meloni è una donna seria, e con buon senso.",/lucia.bellini.733?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=40&count=53&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB1hBQ9Oa7WnwTS +Marco Luca,Nunzio Marchese,2019-05-18,24,"Poverino, siciliano che vota lega.",/antonio.vasile.564?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=40&count=53&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB1hBQ9Oa7WnwTS +Nicholas Campelli,Nunzio Marchese,2019-05-18,5,meglio votare i soliti vero? marco luca,/profile.php?id=100011357063485&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=40&count=53&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB1hBQ9Oa7WnwTS +Gabriele Rubino,Nunzio Marchese,2019-05-18,19,Per fortuna che i siciliani non sono tutti stupidi come te,/TheOnlyTantaCarne?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=40&count=53&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB1hBQ9Oa7WnwTS +Luciana Zanelli,Nunzio Marchese,2019-05-18,6,Nunzio Marchese esatto. Salvini Meloni!!!! sempre 👋👋👋👋👋,/luciana.zanelli.58?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=40&count=53&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB1hBQ9Oa7WnwTS +Giuseppe Paris Bondi,Nunzio Marchese,2019-05-18,1,Marco Luca Voti Macron o la Merkel,/giuseppeparis.bondi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=40&count=53&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB1hBQ9Oa7WnwTS +La Patty Buraschi,Nunzio Marchese,2019-05-18,,Marco Luca quindi che problemi ci sono !!!!!!!!!!!!,/lapatty.buraschi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=40&count=53&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB1hBQ9Oa7WnwTS +Antonio de Laurenzi,Nunzio Marchese,2019-05-18,5,Nunzio Marchese dovete Pure prendervi il vecchietto,/antonio.delaurenzi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=40&count=53&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB1hBQ9Oa7WnwTS +Carmelo de Luca,Nunzio Marchese,2019-05-18,11,Nunzio Marchese traditore dei siciliani,/carmelo.deluca.313?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=40&count=53&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQB1hBQ9Oa7WnwTS +Mariolina Schizzo,Nunzio Marchese,2019-05-18,4,Nunzio Marchese nooooo la meloni noooo. Anche lei tradisce per natura.,/mariolina.mariolina.90?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=50&count=53&pc=6&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBhEce-KHhlPy1A +Luca Hermano Armanni,Nunzio Marchese,2019-05-18,5,Nunzio Marchese ma non si vota per le europee?,/lucahermano.armanni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=50&count=53&pc=6&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBhEce-KHhlPy1A +Iva Piemontese,Nunzio Marchese,2019-05-18,7,Ma che c o stai a di,/iva.piemontese.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622555033155&p=50&count=53&pc=6&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBhEce-KHhlPy1A +Marco Targa,ROOT,2019-05-18,36,"Mai un’offesa, mai una parola fuori posto e...tanta umiltà. Non si era mai vista una cosa del genere",/marco.targa.735?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_391129934818711&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDNVytSxcbTooE4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Marco Targa,2019-05-18,2,"fa finta,é falso come giuda",/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_391129934818711&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDNVytSxcbTooE4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mirella Valenti,Marco Targa,2019-05-18,5,Giangiacomo Carretta il falso come GIUDA e stato di MAIO e CONTE hanno pugnalato SALVINI alle SPALLE sono stati traditori io ho votato 5 stelle il 4 marzo ma ora voterò LEGA non mi piacciono i TRADITORE,/profile.php?id=100008500292362&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_391129934818711&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDNVytSxcbTooE4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Michele Chicco,Marco Targa,2019-05-18,2,"Giangiacomo Carretta senta pentastellato, ma proprio lei e il vostro partitucolo parlate di falsità e tradimento?",/michele.chicco.509?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_391129934818711&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDNVytSxcbTooE4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Salvatore Di Marino,Marco Targa,2019-05-18,,Marco Targa Infatti Non ha menzionato ne Di Maio ne il partito Che ne prenda esempio,/dimarino.salvatore?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_391129934818711&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDNVytSxcbTooE4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Manuela Bonvini,ROOT,2019-05-18,286,È andato tutto come doveva andare..organizzato tutto alla lettera..solo la Lega..poteva fare questo..momento storico e indimenticabile..😘,/profile.php?id=100009706418258&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528583155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBSrwj1GE_W6mbC&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Lalli,Manuela Bonvini,2019-05-18,5,Quanti rosiconi piangeranno e creperanno d' invidia.💪,/maria.lalli.92?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528583155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBSrwj1GE_W6mbC&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Manuela Bonvini,Manuela Bonvini,2019-05-18,1,Maria Lalli ..ben detto..questa è stata l'ennesima dimostrazione di quello che è capace di fare la Lega..😉,/profile.php?id=100009706418258&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528583155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBSrwj1GE_W6mbC&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ezio Mancuso,Manuela Bonvini,2019-05-18,,"Manuela Bonvini s'è storica lo vediamo ad ottobre quando dovete fare la finanziaria voi il vecchietto e Giorgia Meloni, se i Vostri alleati ci fanno sforare il 3% è storica altrimenti è un'altra inculata 😉",/eziomit?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528583155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBSrwj1GE_W6mbC&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniele Capucciati,Manuela Bonvini,2019-05-18,1,Manuela Bonvini anche perché impariamo dai nostri Alpini!!!,/profile.php?id=100008857651184&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528583155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBSrwj1GE_W6mbC&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rita Caminiti,Manuela Bonvini,2019-05-18,,Manuela Bonvini Esatto e la stessa organizzazione porterà in Italia quando non avrà invidiosi rivali politici tra i piedi.,/ritacaminiti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528583155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBSrwj1GE_W6mbC&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianna Aliprandi,Manuela Bonvini,2019-05-18,1,Ezio Mancuso per quanto male facciano non potranno eguagliare le neffandezze fatte dai vari governi PD e sinistri vari,/profile.php?id=100009080119705&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528583155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBSrwj1GE_W6mbC&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna Maria Lambruschi,ROOT,2019-05-18,34,Pidioti ci sono dei buoni prodotti in farmacia per il bruciaculo. Forza capitano.,/annamaria.lambruschi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425869238244947&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCjgMmA3Af0PW_5&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Corrado Lippi,Anna Maria Lambruschi,2019-05-18,2,Non glielo suggerire. Facciamoli soffrire,/corrado.lippi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425869238244947&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCjgMmA3Af0PW_5&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tommaso Molle,ROOT,2019-05-18,251,Le zecche mettono striscioni e Salvini raduna 150.000 persone.,/molle.tommaso?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&count=31&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDOkrCmLhaQ49Re&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +BiancaLaura Mattoni,Tommaso Molle,2019-05-18,2,"Tommaso Molle Ma tu pensi proprio che loro ammettano l'evidenza? Ti diranno che il duomo di Milano era fatto con i Lego, e che le migliaia di persone presenti sulla piazza erano un esercito di formiche alla ricerca di cibo",/biancalaura.mattoni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&count=31&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDOkrCmLhaQ49Re&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pino Mar,Tommaso Molle,2019-05-18,,Pomata BRUCIA CUL x i ROSICONI,/profile.php?id=100035268701087&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&count=31&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDOkrCmLhaQ49Re&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio De Maria,Tommaso Molle,2019-05-18,4,Questa è 60 mila vedete un po’ voi 😂😂😂,/giorgio.demaria.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&count=31&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDOkrCmLhaQ49Re&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cinzia Gro,Tommaso Molle,2019-05-18,,Davide Deidda hai ragione erano 160 mila! A saper ben contare. Voi eravate a pulire i vetri coi lenzuoli?,/profile.php?id=100009442750860&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&count=31&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDOkrCmLhaQ49Re&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Francesco Cascone,Tommaso Molle,2019-05-18,,"La piazza misura 13500mq compre statue e sagrato, se schiacciamo 4 persone al mq (quasi impossibile) sono 54000. Non dico siano poche, è solo per dare una cifra.",/francesco.cascone.737?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&count=31&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDOkrCmLhaQ49Re&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvia Lux,Tommaso Molle,2019-05-18,,Tommaso Molle bravo!,/silvia.lux.568847?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&count=31&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDOkrCmLhaQ49Re&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio De Maria,Tommaso Molle,2019-05-18,1,E comunque lui c’era 😂😂😂,/giorgio.demaria.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&count=31&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDOkrCmLhaQ49Re&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Fogaroli,Tommaso Molle,2019-05-18,,"Ecco, questa è Piazza Duomo a Milano quando contiene 50000 persone, forse, guarda le foto di oggi, fatti due conti e poi vieni a dirmi qualcosa. Prima di parlare bisogna pulirsi il cu..ehm, Ah già, I'M sorry.. è che da quando ascolto le cazzate di Salvini, chissà perché, penso che lui non parli dalla bocca..",/giuseppe.fogaroli.359?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&count=31&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDOkrCmLhaQ49Re&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annamaria Moccia,Tommaso Molle,2019-05-18,,Mario Del Turco... Ma quanto rosicate ehhh😆😆😆,/annamaria.moccia.90?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&count=31&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDOkrCmLhaQ49Re&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimo Battaglia,Tommaso Molle,2019-05-18,,"Giuseppe Fogaroli il 26 maggio vedremo quanti siamo, intanto dormite sereni, altrimenti rischiate di finire in camicia di forza 😂 👍",/massimo.verdi.77770?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&count=31&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDOkrCmLhaQ49Re&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cinci Pic,Tommaso Molle,2019-05-18,2,Mario Del Turco forse si è confuso con la contromanifestazione 4 ragazzetti e pochi ombrelli.,/cinci.pic.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=10&count=31&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAgi4QFBlU20L6U +Tommaso Molle,Tommaso Molle,2019-05-18,8,questa foto l'ho presa in rete.,/molle.tommaso?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=10&count=31&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAgi4QFBlU20L6U +Sandra Piperno,Tommaso Molle,2019-05-18,1,,/profile.php?id=100010598678767&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=10&count=31&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAgi4QFBlU20L6U +Tommaso Molle,Tommaso Molle,2019-05-18,,Davide Deidda Dillo tu il numero delle persone.,/molle.tommaso?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=10&count=31&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAgi4QFBlU20L6U +Sergio Tripoli,Tommaso Molle,2019-05-18,,Tommaso Molle nel mio condominio alle riunioni siamo molti di piu,/sergio.tripoli.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=10&count=31&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAgi4QFBlU20L6U +Tommaso Molle,Tommaso Molle,2019-05-18,1,Sergio Tripoli quante persone erano? Dillo tu il numero.,/molle.tommaso?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=10&count=31&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAgi4QFBlU20L6U +Massimo Battaglia,Tommaso Molle,2019-05-18,4,Bacioni ai rosiconi 😘😘😘,/massimo.verdi.77770?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=10&count=31&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAgi4QFBlU20L6U +Matteo Barbieri,Tommaso Molle,2019-05-18,3,Tommaso Molle lasciali parlare. Chissà se lo faranno anche il giorno dopo le elezioni.. 😂,/profile.php?id=100004616205777&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=10&count=31&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAgi4QFBlU20L6U +Massimo Sebastiani,Tommaso Molle,2019-05-18,,Mario Del Turco,/franco.rosati.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=10&count=31&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAgi4QFBlU20L6U +Anna Vago,Tommaso Molle,2019-05-18,3,"Sergio Tripoli ti svelo un segreto,eravamo in due, io e mio marito.Contento. Ora rilassati",/anna.vaghetti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=10&count=31&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAgi4QFBlU20L6U +Silvana Parri,ROOT,2019-05-18,32,avanti così ragazzi che li asfaltiamo tutti quei maledetti burocrati e quei grullotti falsi,/silvana.parri?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325211768154543&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQB0ABdGgR3dHDcI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Di Vi,Silvana Parri,2019-05-18,,ma se si allea con junker in europa che è il capo dei burocrati 😂 beata ignoranza vorrei essere ignorante come voi anche io giuro.,/andrea.divi.758?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325211768154543&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQB0ABdGgR3dHDcI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matteo Barbieri,Tommaso Molle,2019-05-18,6,Tommaso Molle maalox..,/profile.php?id=100004616205777&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=20&count=31&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDks_X1MEHrc9ci +Davide Rossi,Tommaso Molle,2019-05-18,1,Maloooox anche per calenda,/davide.cerro?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=20&count=31&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDks_X1MEHrc9ci +Davide Deidda,Tommaso Molle,2019-05-18,12,150 mila??? Hahahahaah Ma per cortesia.,/davide.deidda.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=20&count=31&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDks_X1MEHrc9ci +Giuseppe Fogaroli,Tommaso Molle,2019-05-18,6,Tommaso Molle bevi la stessa roba che beve Salvini quando dice cazzate?,/giuseppe.fogaroli.359?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=20&count=31&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDks_X1MEHrc9ci +Osvaldo Locatelli,Tommaso Molle,2019-05-18,6,"Per superare la sinistra,ne bastano anche 5000.😂",/osvaldo.locatelli.98?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=20&count=31&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDks_X1MEHrc9ci +Matteo Barbieri,Tommaso Molle,2019-05-18,9,"Mario Del Turco forse erano 50, come quelli di ieri al comizio in pizzeria a Maranello a vedere gentiloni 😂😂",/profile.php?id=100004616205777&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=20&count=31&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDks_X1MEHrc9ci +Federica Ignoti,Tommaso Molle,2019-05-18,6,,/federicapalladineve.ignoti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=20&count=31&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDks_X1MEHrc9ci +Tommaso Molle,Tommaso Molle,2019-05-18,1,Giuseppe Fogaroli dillo tu quanti erano.,/molle.tommaso?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=20&count=31&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDks_X1MEHrc9ci +Mario Del Turco,Tommaso Molle,2019-05-18,24,"Tommaso Molle 🤣🤣🤣🤣 ma se ne erano appena 5.000, ma cosa vai raccontando. Guarda bene la foto sopra",/mario.delturco.31?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536273155&p=30&count=31&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQChJvJ0zs3T2SB2 +Maria Merico,ROOT,2019-05-18,29,Grandeeeee Matteoooooo!!!!!! Sei tutti noiiiiii!!!! E noi siamo con te sempreeeee!!!!! W Salvini!!!!💚🇮🇹💚🇮🇹💚🇮🇹💚🇮🇹💚👏👏👏,/maria.merico.33?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877691434689&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDN7_OtMOHxrMpE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Santina Leporace,Maria Merico,2019-05-18,,Maria Merico ❤️,/profile.php?id=100004658206121&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877691434689&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDN7_OtMOHxrMpE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Serena Simonetti,ROOT,2019-05-18,332,Orgogliosa di essere anti comunista...ma sopratutto orgogliosa del ns Matteo salvini💚💚💚💚,/profile.php?id=100008114416549&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&count=15&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBbmqRGqwY8SM4m&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simone De Fusin Prosdocimi,Serena Simonetti,2019-05-18,9,Serena Simonetti Rosaria Merola il termine fascista che alla sinistra piace tanto morto 70 anni fa..... oggi appartiene proprio a loro.,/profile.php?id=100009312822788&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&count=15&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBbmqRGqwY8SM4m&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gisella Puterio,Serena Simonetti,2019-05-18,,Giulio Salvetti è lei che è ridicolo. Rassegnatevi tutti: gli italiani hanno scelto,/gisella.puterio.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&count=15&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBbmqRGqwY8SM4m&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gavina Pintus,Serena Simonetti,2019-05-18,1,Serena Simonetti i veri comunisti la pensano come Salvini,/gavina.pintus.754?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&count=15&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBbmqRGqwY8SM4m&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mercedes Turridano,Serena Simonetti,2019-05-18,,"Giulio Salvetti e magari chi sfoggia questi due attrezzi non li ha neanche mai visti dal vero.....tanto sono impegnati a manifestare, minacciare di morte, delinquere eccc....",/mercedes.turridano?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&count=15&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBbmqRGqwY8SM4m&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marco Russo,Serena Simonetti,2019-05-18,,Serena Simonetti cosa significa per lei essere anticomunista?,/profile.php?id=100027695735866&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&count=15&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBbmqRGqwY8SM4m&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisabetta Ghini,Serena Simonetti,2019-05-18,,Serena Simonetti anch'io,/elisabetta.ghini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&count=15&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBbmqRGqwY8SM4m&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Serena Simonetti,Serena Simonetti,2019-05-18,,Marco Russo quello che per lei o gente come voi esser antifascista che gridano fascisti e poi sono i primi a far casini nelle piazze voi intendete dittatura fascista ecco io intendo dittatura comunista,/profile.php?id=100008114416549&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&count=15&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBbmqRGqwY8SM4m&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simona Nesi,ROOT,2019-05-18,29,Mi raccomando Matteo stacca la spina dai 5 Stelle !!!!!! E tienti ben stretta invece Giorgia Meloni!!!!!,/simona.nesi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_139112313817839&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBQnFW9tD3ePXbl&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Francesca Bruschi,Simona Nesi,2019-05-18,2,👏👏👏👏,/bruschi.francy?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_139112313817839&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBQnFW9tD3ePXbl&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ivana Zenoni,Simona Nesi,2019-05-18,3,"Perfettamente d’accordo con te, giorgia Meloni è un politico di grande spessore !!",/ivanazenoni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_139112313817839&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBQnFW9tD3ePXbl&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simona Nesi,Simona Nesi,2019-05-18,,Ivana Zenoni loro 2 al Governo rasenterebbero la perfezione!,/simona.nesi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_139112313817839&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBQnFW9tD3ePXbl&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nicola Lostumbo,Simona Nesi,2019-05-18,,"e` magari pure il berlusca,incluso!e` ci scappa la perfezione",/nlostumbo1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_139112313817839&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBQnFW9tD3ePXbl&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giulio Salvetti,Serena Simonetti,2019-05-18,2,Serena Simonetti 🤣,/simone.mazzone.75?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&p=10&count=15&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCTGh0XlH20G_lg +Mauro Montanari,Serena Simonetti,2019-05-18,11,Giulio Salvetti siamo milioni a non votare la vostra falce e martello.,/mauro.montanari.562?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&p=10&count=15&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCTGh0XlH20G_lg +Lerario Rosa,Serena Simonetti,2019-05-18,2,Serena Simonetti idem 🤗,/lerario.rosa?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&p=10&count=15&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCTGh0XlH20G_lg +Piera Morandi,Serena Simonetti,2019-05-18,12,"Mio nonno era un protopartigiano: ucciso nel 1928 all'eta' di 33 anni con due bambini di 5 e 3 anni, mio papa' 35 anni tesserato al pci,sempre combattuto contro il sistema.....se fossero ancora vivi adesso sarebbero leghisti! Forza lega vinci per noi!!!!",/piera.morandi.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&p=10&count=15&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCTGh0XlH20G_lg +Sauro Bannato,Serena Simonetti,2019-05-18,6,"Giulio Salvetti bei simboli la falce e il martello Mi ricorda Stalin e le sue purghe con infine i Gulag Siberiani ....Ma dimmi te quale nazione al giorno d'oggi è Komunista con la vera democrazia . Falce e Martello sinonimo di terrore come Fidel Castro e la libertà Cubana , o Tito con le Foibe , per non parlare di Mao con le uccisioni di massa e te le ricordi giovanotto le Brigate Rosse ??? e il bello che cercate anche di proteggere questi terroristi della democrazia . Per ultimo c'è quel giovanotto della Corea del Nord ....Vai in ferie la e domanda con la popolazione se stanno bene . Fai pena , veramente pena . Per questo e altro SONO LEGHISTA E NON VI SOPPORTO",/sauro.bannato?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622527023155&p=10&count=15&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCTGh0XlH20G_lg +Fabio Serzio,ROOT,2019-05-18,21,"Piazza vuota, finalmente anche a Milano hanno capito che sei un vluff",/fabio.serzio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&count=37&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7Ju35DHB8KCex&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniela Chiorboli,Fabio Serzio,2019-05-18,2,Piazza vuota??? Ma che video ha visto? Forse quello del PD😜,/daniela.chiorboli.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&count=37&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7Ju35DHB8KCex&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fabio Serzio,Fabio Serzio,2019-05-18,,"Daniela Chiorboli tu che sei una seguace, facci vedere la foto tua in piazza... O sei fan su Facebook?",/fabio.serzio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&count=37&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7Ju35DHB8KCex&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Meris Curnis,Fabio Serzio,2019-05-18,,Fabio serio.. Ahahahah ahahahah poraccio I soliti pinocchio,/meris.curnis.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&count=37&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7Ju35DHB8KCex&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cinci Pic,Fabio Serzio,2019-05-18,,"Fabio Serzio ignorante sarà sua sorella, io sono italiana e lo scrivo in italiano.",/cinci.pic.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&count=37&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7Ju35DHB8KCex&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Katia Valadon,Fabio Serzio,2019-05-18,2,Maurizio Costa ho il video di un amico che abita al 4 piano del palazzo che si vede...mai vista tanta gente.,/katia.valadon?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&count=37&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7Ju35DHB8KCex&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pietro Cusin,Fabio Serzio,2019-05-18,,5 STALLE e RUBENTINO..... Che disgrazia nella tua famiglia... Ma quella volta tua madre non poteva fare un pompino invece di procreare??? 🤔🤔🤔🤔,/pietro.cusin.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&count=37&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7Ju35DHB8KCex&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fabio Serzio,Fabio Serzio,2019-05-18,,Cinci Pic bacioni,/fabio.serzio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&count=37&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7Ju35DHB8KCex&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fabio Serzio,Fabio Serzio,2019-05-18,,Pietro Cusin juventino a chella bukkin e mammt,/fabio.serzio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&count=37&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7Ju35DHB8KCex&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Michele Chicco,Fabio Serzio,2019-05-18,,"Fabio Serzio complimenti che educazione,si vede tutta la tua cultura e umiltà,penoso essere umano",/michele.chicco.509?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&count=37&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC7Ju35DHB8KCex&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisabetta Sanna,ROOT,2019-05-18,327,"Tanto per dire chi ė la RAI e la par condicio: interviste a Zingaretti e Calenda (meno male che Martina si sia estinto spontaneamente e ce l'abbiano risparmiato)Fratoianni, Speranza, grasso, Bonino, il papa a rottadicollo, che invece di fare una campagna contro i cristiani innocenti che vengono ammazzati ogni giorno ovunque (Bergoglio ti ricordo che il ""cimitero"" non sta nel Mediterraneo, perché non ė stato mai provato che possa essere considerato tale, il cimitero invece è quello dei cristiani della TUA chiesa) fa la campagna contro le parole che ""potrebbero"" essere violente nei social network in italia e per favorire l'immigrazione clandestina di Soros e compagni, nonché gli allacci di luce ed occupazioni abusive per ""protesta"", ma protesta a cosa? alle numerose attività e case affittate dalla Ecclesia, come ai tempi dell'Inquisizione, senza pagare tasse allo Stato italiano e sfrattando chi non paga perché non ce la fa?. Su piazza Duomo...meravigliosamente strapienaaaaa, uno tsunami di gente...manco una parola, silenzio totale. Meno male che c'è TG Com e Facebook! Saluti da Roma! Forza Matteo!💚 😂😂😂 P.S. Ah! Guardate che gli striscioni inutili e patetici, sono stati lasciati tutti, potrebbero essere utili per pulirci il popo' visto che ci potrebbe essere chi se la stia facendo addosso dalla rabbia e dalla paura di estinguersi in modo definitivo!🥶",/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&count=44&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA_jB4B3BP60HOs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ester Villa,Elisabetta Sanna,2019-05-18,1,Elisabetta Sanna 👏👏❤,/profile.php?id=100006389224467&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&count=44&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA_jB4B3BP60HOs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,Anita Pera grazie...😊💚,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&count=44&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA_jB4B3BP60HOs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,Ester Villa 💚,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&count=44&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA_jB4B3BP60HOs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cleo Patra,Elisabetta Sanna,2019-05-18,1,"Annita Terruli certo, continuate a dire le cazzate",/lu.to.779?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&count=44&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA_jB4B3BP60HOs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cinzia Splendore,Elisabetta Sanna,2019-05-18,1,Elisabetta Sanna grande !!!,/cinzia.splendore.35?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&count=44&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA_jB4B3BP60HOs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,Cinzia Splendore 💚❤,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&count=44&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA_jB4B3BP60HOs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Antonino Lamonaca,Elisabetta Sanna,2019-05-18,2,Elisabetta Sanna brava ! Brava ! Bravissima !,/antonino.lamonaca?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&count=44&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA_jB4B3BP60HOs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rachele Schiavon,Elisabetta Sanna,2019-05-18,1,Elisabetta Sanna concordo alla grande,/rachele.schiavon.543?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&count=44&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA_jB4B3BP60HOs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,Antonino Lamonaca 💚❤,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&count=44&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA_jB4B3BP60HOs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,Rachele Schiavon 💚😂,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&count=44&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA_jB4B3BP60HOs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisabetta Cenci,Fabio Serzio,2019-05-18,1,Sandra Chiricozzi xanax a go go per i rosiconiii!!! 😂,/profile.php?id=100008402479153&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=10&count=37&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD_jsoF3F_Z9YDC +Ivana Barbieri,Fabio Serzio,2019-05-18,,Lasciatelo parlare poverino🤣🤣🤣🤣,/ivana.barbieri.54?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=10&count=37&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD_jsoF3F_Z9YDC +Rita Baldovino,Fabio Serzio,2019-05-18,,🤣🤣🤣🤣🤣,/baldorita?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=10&count=37&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD_jsoF3F_Z9YDC +Fabio Serzio,Fabio Serzio,2019-05-18,,"10 mila, mentre erano attesi 300 mila... C era più gente al mio compleanno",/fabio.serzio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=10&count=37&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD_jsoF3F_Z9YDC +Fabio Serzio,Fabio Serzio,2019-05-18,2,"Cinci Pic Rhodesia magari, Ignorante",/fabio.serzio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=10&count=37&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD_jsoF3F_Z9YDC +Maria Turrisi,Fabio Serzio,2019-05-18,3,Piazza vuota?!,/mary.trrs?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=10&count=37&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD_jsoF3F_Z9YDC +Michele Chicco,Fabio Serzio,2019-05-18,3,"iniziano le prove per il vostro canto del cigno ''signor'' Fabio il vostro fegato è già partito e voi lo seguirete a breve,a mai più rivedervi,ciao ciao",/michele.chicco.509?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=10&count=37&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD_jsoF3F_Z9YDC +Fabio Serzio,Fabio Serzio,2019-05-18,,Maria Turrisi e quanti sono?🙃🙃🙃🙃,/fabio.serzio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=10&count=37&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD_jsoF3F_Z9YDC +Fabio Serzio,Fabio Serzio,2019-05-18,3,"Michele Chicco a te è partito il cervello, quello che era rimasto di quell ammasso di 💩",/fabio.serzio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=10&count=37&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD_jsoF3F_Z9YDC +Mary Costa,Fabio Serzio,2019-05-18,2,Fabio Serzio povero...,/profile.php?id=100010070253067&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=10&count=37&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQD_jsoF3F_Z9YDC +Rosanna Eramo,Elisabetta Sanna,2019-05-18,1,,/annarosa.eramo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=10&count=44&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA8g3C5HSRyO7Dt +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,1,Rosanna Eramo 💚,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=10&count=44&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA8g3C5HSRyO7Dt +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,2,Dino Alberici 👍,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=10&count=44&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA8g3C5HSRyO7Dt +Mara Donini,Elisabetta Sanna,2019-05-18,4,Maria Lalli dobbiamo essere noi a votarlo se vogliamo che faccia qualcosa!,/mara.donini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=10&count=44&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA8g3C5HSRyO7Dt +Franco Fiocco,Elisabetta Sanna,2019-05-18,4,"Elisabetta Sanna se questa piazza piena è contro l'Italia cosa dovrebbero dire delle piazze della sinistra a favore dell'europa, da tutti criticata, che sono in 100 persone! On. Calenda dopo 30 anni e 5 anni di governi della sinistra e del PD NON VI CREDE PIÙ NESSUNO! Potete dire e fare ciò che volete.....",/profile.php?id=100024103220328&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=10&count=44&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA8g3C5HSRyO7Dt +Gisella Puterio,Elisabetta Sanna,2019-05-18,3,Annita Terruli: lei quanti extracomunitari ha in casa sua? E i buonisti come lei quanti ne hanno? Siete ridicoli e patetici.,/gisella.puterio.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=10&count=44&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA8g3C5HSRyO7Dt +Franco Fiocco,Elisabetta Sanna,2019-05-18,2,"Luca Padoan rappresenta il 2% degli Italiani ed è sempre nelle tv !!!!!!! Frattoianni non accettate che non vi creda più nessuno dopo 40 anni che avete condizionato, governato, l'Italia!",/profile.php?id=100024103220328&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=10&count=44&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA8g3C5HSRyO7Dt +Eugenia Seffer,Elisabetta Sanna,2019-05-18,2,Elisabetta Sanna meravigliosa!,/eugenia.seffer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=10&count=44&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA8g3C5HSRyO7Dt +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,Eugenia Seffer 💚🙏,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=10&count=44&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA8g3C5HSRyO7Dt +Anita Pera,Elisabetta Sanna,2019-05-18,1,Elisabetta Sanna GRANDE!!!,/anita.pera.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=10&count=44&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA8g3C5HSRyO7Dt +Prassede Ricci,Fabio Serzio,2019-05-18,8,VUOTA?????15000 PERSONE PER TE É UNA PIAZZA VUOTA????ROSICAAA,/prassede.ricci?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=20&count=37&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQBwCtmBp0I9Auhr +Sandra Chiricozzi,Fabio Serzio,2019-05-18,6,Buffone!!!! La piazza era stracolma... ma cosa pensate di ottenere con queste cavolate... meglio che ti prendi un calmante...🙂🙂,/sandra.chiricozzi.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=20&count=37&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQBwCtmBp0I9Auhr +Manlio Cerutti,Fabio Serzio,2019-05-18,1,Imbesil,/manlio.cerutti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=20&count=37&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQBwCtmBp0I9Auhr +Daniela Frattini,Fabio Serzio,2019-05-18,7,Hai bisogno di un oculista,/profile.php?id=100004174034867&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=20&count=37&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQBwCtmBp0I9Auhr +Giovanna Tiso,Fabio Serzio,2019-05-18,3,"Che coraggio a dire piazza vuota e pienissima,W salvini.",/giovanna.tiso.12?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=20&count=37&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQBwCtmBp0I9Auhr +Vittorio Maniaci,Fabio Serzio,2019-05-18,9,Il 26 dopo le elezioni ti tornerà la vista ed anche lo stesso bruciore al culo che hai sentito il 4 marzo 2018.... La bontà ed il buonsenso R I P A G A ...,/vittorio.maniaci?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=20&count=37&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQBwCtmBp0I9Auhr +Ottavia Frasconi,Fabio Serzio,2019-05-18,2,Fabio Serzio mi sa che lei non ci vede o ha sbagliato piazza!,/ottavia.frasconi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=20&count=37&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQBwCtmBp0I9Auhr +Nonna Enza,Fabio Serzio,2019-05-18,4,Fabio Serzio ma anche se sei di un altro partito perché negare quello che si vede faresti più bella figura tacere e ci guadagnerebbe anche il tuo partito lasciatelo dire da una nonna che di anni ne ha tanti e di fanfarone me ha visti passare tanti. Nessuno ti regalerà niente ricordalo .,/nonna.enza.16?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=20&count=37&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQBwCtmBp0I9Auhr +Robin Marian,Fabio Serzio,2019-05-18,4,Hai sbagliato piazza sei andato dai cinque sinistri,/robin.marian.923?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=20&count=37&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQBwCtmBp0I9Auhr +Cinci Pic,Fabio Serzio,2019-05-18,1,Fabio Serzio trasferisciti in Rodesia. Sempre tu sappia dov'è.,/cinci.pic.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=20&count=37&pc=3&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQBwCtmBp0I9Auhr +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,9,"Annita Terruli ""situazione"" si scrive con una ""Z"" e il verbo avere richiede la ""H"" in terza persona.Impari prima l'italiano e poi potrà confrontarsi con me.",/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=20&count=44&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBFJ12EN2cEd34x +Maria Lalli,Elisabetta Sanna,2019-05-18,11,"Elisabetta....spero che Salvini metta fine a tutto lo schifo che sta distruggendo questo bel paese.Si vive nella paura.....mi dispiace, anche, che intervenga la chiesa a gamba tesa nella politica.....questa chiesa ha mai pensato alla povere famiglie italiane che non hanno di che campare o sono importanti solo gli emigranti?CHE DELUSIONE!!!!!",/maria.lalli.92?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=20&count=44&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBFJ12EN2cEd34x +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,Maria Lalli 💚,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=20&count=44&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBFJ12EN2cEd34x +Enza Cerullo,Elisabetta Sanna,2019-05-18,1,Elisabetta Sanna ❤❤❤❤,/enza.cerullo.31?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=20&count=44&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBFJ12EN2cEd34x +Luca Padoan,Elisabetta Sanna,2019-05-18,2,... però è un bell'uomo 😉,/Lukesbyme?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=20&count=44&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBFJ12EN2cEd34x +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,"Luca Padoan preferisco Giorgetti, lo trovo più sexy...😉",/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=20&count=44&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBFJ12EN2cEd34x +Liberina Ziri,Elisabetta Sanna,2019-05-18,1,Elisabetta Sanna dio ti benedica le mie parole,/libeziri?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=20&count=44&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBFJ12EN2cEd34x +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,2,Liberina Ziri grazie cara.. ne abbiamo bisogno davvero!😘 💚💚💚💚💚💚💚💚❤,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=20&count=44&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBFJ12EN2cEd34x +Dino Alberici,Elisabetta Sanna,2019-05-18,2,"Annita Terruli tu intanto impara l'italiano, questo sarebbe già un grosso passo in avanti....",/dino.alberici.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=20&count=44&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBFJ12EN2cEd34x +Rosanna Eramo,Elisabetta Sanna,2019-05-18,2,Elisabetta Sanna Bravissima!!! Condivido!!!,/annarosa.eramo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=20&count=44&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBFJ12EN2cEd34x +Giuliana Termenini,Fabio Serzio,2019-05-18,3,Ti rode😂😂😂😂😂,/giuliana.termenini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=30&count=37&pc=4&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDabKkULLhaFleB +Francesca Paiella,Fabio Serzio,2019-05-18,5,Ma che sei cieco?,/francesca.paiella.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=30&count=37&pc=4&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDabKkULLhaFleB +Margherita Polegri,Fabio Serzio,2019-05-18,5,Guarda meglio,/margherita.polegri?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=30&count=37&pc=4&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDabKkULLhaFleB +Daniela Alfieri,Fabio Serzio,2019-05-18,10,piazza vuota???..metti gli occhiali..uno spettacolo mai visto.,/daniela.alfieri.71?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=30&count=37&pc=4&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDabKkULLhaFleB +Paolino Riboni,Fabio Serzio,2019-05-18,18,di vuoto c'è solo la tua testa,/profile.php?id=100009108748352&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=30&count=37&pc=4&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDabKkULLhaFleB +Maurizio Costa,Fabio Serzio,2019-05-18,12,Tu sei vuoto..forse hai guardato la manifestazione del pd😂😂😂😂😂,/maurizio.costa.5076?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=30&count=37&pc=4&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDabKkULLhaFleB +Salvatore AF,Fabio Serzio,2019-05-18,8,Piazza vuota e solo questo che sai dire. Vedrai il 26 quanto vuoto sarà il tuo pd,/zioaire?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411726495517086&p=30&count=37&pc=4&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDabKkULLhaFleB +Roberto Spedale,Elisabetta Sanna,2019-05-18,1,Fantastica,/roberto.spedale.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=30&count=44&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCp_jnKKrtmP_x2 +Maria Diana,Elisabetta Sanna,2019-05-18,1,👏👏👏👏👏👏👏👏👏,/profile.php?id=100005565106370&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=30&count=44&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCp_jnKKrtmP_x2 +Serena Fiori,Elisabetta Sanna,2019-05-18,4,Ci si faranno i sudari con i loro striscioni,/serena.fiori.7712?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=30&count=44&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCp_jnKKrtmP_x2 +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,Egidio Marin 🙏💚,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=30&count=44&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCp_jnKKrtmP_x2 +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,Maria Diana 🙏💚,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=30&count=44&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCp_jnKKrtmP_x2 +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,1,Serena Fiori 🙏💚,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=30&count=44&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCp_jnKKrtmP_x2 +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,Roberto Spedale 😂💚,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=30&count=44&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCp_jnKKrtmP_x2 +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,Benedetta Grazioli: Maalox a volte fa miracoli🥶,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=30&count=44&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCp_jnKKrtmP_x2 +Annita Terruli,Elisabetta Sanna,2019-05-18,4,Elisabetta Sanna gli immigrati nn arrivano x che li sta facendo morire in mare nn perche 'a risolto la situazzione,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=30&count=44&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCp_jnKKrtmP_x2 +Angelizé GlamourEvent,Elisabetta Sanna,2019-05-18,1,CONDIVIDO IN PIENO,/angelize.glamourevent?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=30&count=44&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCp_jnKKrtmP_x2 +Giuseppe Baré,Elisabetta Sanna,2019-05-18,14,Elisabetta Sanna guardi e' gia' una grande e buona notizia che Martina si sia autoestinto dopo la trombatura rifilatagli da Zingaretti che non ha ancora digerito. Per oggi puo' anche bastare.,/profile.php?id=100007301027043&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=40&count=44&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDQXFb_toFYUDAr +Elisabetta Sanna,Elisabetta Sanna,2019-05-18,,Giuseppe Baré 👍😂😂😂🥶,/elisa.sanna.967?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=40&count=44&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDQXFb_toFYUDAr +Benedetta Grazioli,Elisabetta Sanna,2019-05-18,,Bel delirio,/benedetta.grazioli.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=40&count=44&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDQXFb_toFYUDAr +Egidio Marin,Elisabetta Sanna,2019-05-18,1,Elisabetta Sanna 👏👏👏👏👏👏♥️,/egidio.marin?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509338155&p=40&count=44&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDQXFb_toFYUDAr +Marisanice Montecchi,ROOT,2019-05-18,20,chiedo alla polizia postale di individuare gli IP di coloro che insultano il Vice Premier e Ministro dell'Interno,/marisanice.montecchi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2224508044298605&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDoYakBH-swOjnr&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Caeta,Marisanice Montecchi,2019-05-18,1,"fregatene e vai a votare il giusto il 26, così li si zittisce per sempre, ciao",/caetapatrizia?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2224508044298605&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDoYakBH-swOjnr&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Caeta,Marisanice Montecchi,2019-05-18,,"finito, ora a fare la cena va !",/caetapatrizia?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2224508044298605&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDoYakBH-swOjnr&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Stefano Starvaggi,Marisanice Montecchi,2019-05-18,1,"Marisanice Montecchi le toghe che inquisiscono il ministro degli interni e chi non è pdiota , sono rosse. Votiamo Salvini, e metteremo toghe neutre che si occupano di criminali",/stefano.starvaggi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2224508044298605&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDoYakBH-swOjnr&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Esmeraldo Latta,Marisanice Montecchi,2019-05-18,,"Si, la digos.. 😂 mavachegher",/alessandro.illatta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2224508044298605&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDoYakBH-swOjnr&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mirko Isoli,Marisanice Montecchi,2019-05-18,,https://m.youtube.com/watch?v=x-nPrBVIRr0,/mirko.isoli.54?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2224508044298605&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDoYakBH-swOjnr&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tito Alissa,,2019-05-18,31,Salvini Milano e vasco in sottofondo💚 meglio di così non si può,/tito.puopolo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=10&av=100013534782121&eav=AfaRFmQi3rEleb1InhUWrzMvFHtmjuD2Phvjga0LdwknEPq7XalHxm0W1YM4S6HPAfM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Risaliti,,2019-05-18,29,Siamo quasi all'ora di cena.Per gigino fegato alla veneziana,/laura.risaliti.50?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=10&av=100013534782121&eav=AfaRFmQi3rEleb1InhUWrzMvFHtmjuD2Phvjga0LdwknEPq7XalHxm0W1YM4S6HPAfM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Erminio Caruso,,2019-05-18,23,"Siamo in tantissimi con te , anche se non siamo presenti ! Forza Salvini!",/erminio.caruso.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=10&av=100013534782121&eav=AfaRFmQi3rEleb1InhUWrzMvFHtmjuD2Phvjga0LdwknEPq7XalHxm0W1YM4S6HPAfM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nello Russo,,2019-05-18,19,"Mai nella storia, si era vista una Milano stra piena. A VOI ROSICONI : che effetto vi fa'? Questo è solo l'inizio,preparatevi la vaselina x il dopo 26 maggio",/sebastiano.russo.7902?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=10&av=100013534782121&eav=AfaRFmQi3rEleb1InhUWrzMvFHtmjuD2Phvjga0LdwknEPq7XalHxm0W1YM4S6HPAfM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,18,Cioè ragazzi .. Lui è un ministro.... Avete ricordi di una cosa del genere!?? Gli umili sono i più grandi.. Grazie Matteo oooooo per tutto ciò che fai iiiiiii,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=10&av=100013534782121&eav=AfaRFmQi3rEleb1InhUWrzMvFHtmjuD2Phvjga0LdwknEPq7XalHxm0W1YM4S6HPAfM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elda Ramundo,ROOT,2019-05-18,269,Un Giorno da ricordare...C'è chi semina odio e chi come NOI di BUONSENSO raccoglie CONSENSI. GRANDE Matteooo...😍✌️👏👏👏♥️💚🇮🇹,/elda.ramundo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512538155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3nNsDnMHaYhK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ivana Solmi,Elda Ramundo,2019-05-18,,Elda Ramundo cd,/ivana.solmi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512538155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3nNsDnMHaYhK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Federico Fedele Grigis,Elda Ramundo,2019-05-18,,Elda Ramundo Restiamo umani picchiando la polizia e impedendo con la violenza la manifestazione di chi la pensa diversamente..,/federico.fedele.583?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512538155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3nNsDnMHaYhK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosanna Eramo,Elda Ramundo,2019-05-18,,Elda Ramundo,/annarosa.eramo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512538155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3nNsDnMHaYhK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosanna Eramo,Elda Ramundo,2019-05-18,,,/annarosa.eramo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512538155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3nNsDnMHaYhK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Bledi Havari,Elda Ramundo,2019-05-18,,Elda Ramundo 😲 che cosa??,/bledides?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512538155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3nNsDnMHaYhK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lombardo Vincenzo,ROOT,2019-05-18,17,Speriamo che il 26 facciamo piazza pulita di tutti quelli che hanno affossato l'Italia e gli italiani,/lombardo.vincenzo.54?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366818104178299&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBFQol2zBo7HTiw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Debora Fiorucci,Lombardo Vincenzo,2019-05-18,1,Compreso il M5S,/fiorucci.debora?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366818104178299&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBFQol2zBo7HTiw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carmelo Messina,ROOT,2019-05-18,266,"Tantissima gente, tanti politici stranieri,al raduno della lega a Milano.",/carmelo.messina.733?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&count=19&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiHKqCWFHWn0an&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giovanna Palombo,Carmelo Messina,2019-05-18,1,Habiba Manaa ARIA !!!!!!,/giovanna.palombo.90?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&count=19&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiHKqCWFHWn0an&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Dino Alberici,Carmelo Messina,2019-05-18,6,Habiba Manaa certo che una che ha il simbolo del pd..... Sei proprio una povera deficiente,/dino.alberici.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&count=19&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiHKqCWFHWn0an&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luciano Salvadori,Carmelo Messina,2019-05-18,3,Habiba Manaa tutto tuo il premio del mentecatto del giorno e mi sa che qui se c'è un infetto.......,/luciano.salvadori.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&count=19&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiHKqCWFHWn0an&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Enio Doneda,Carmelo Messina,2019-05-18,4,Habiba Manaa no no se eviti certi commenti cretini e ti togli dai commenti non ci infettiamo,/enio.doneda?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&count=19&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiHKqCWFHWn0an&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gisella Puterio,Carmelo Messina,2019-05-18,2,Habiba Manaa lei vuole capire solo quello che le conviene. Se non le sta bene ritorni da dove viene e aiuti il suo paese che ne ha bisogno.,/gisella.puterio.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&count=19&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiHKqCWFHWn0an&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gisella Puterio,Carmelo Messina,2019-05-18,,Annita Terruli le può scoppiare il fegato dalla bile.,/gisella.puterio.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&count=19&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiHKqCWFHWn0an&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mirella Ronquillo,Carmelo Messina,2019-05-18,2,Salvini il popolo è la tua forza vaiiiiii,/mirella.ronquillo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&count=19&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiHKqCWFHWn0an&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sara Pizzo,Carmelo Messina,2019-05-18,,Habiba Manaa che sciocchezza,/sara.pizzo.75873?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&count=19&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiHKqCWFHWn0an&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Serena Simonetti,Carmelo Messina,2019-05-18,,Habiba Manaa e Carmelo Messina quanto siete tristi...pensate al Vs partitino da quattro soldi dritto dritto per la via Dell estinzione.... Fiera di essere anticomunista,/profile.php?id=100008114416549&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&count=19&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiHKqCWFHWn0an&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carla Carpignano,Carmelo Messina,2019-05-18,,"Carmelo Messina , è un Grandeeeeee!!!",/profile.php?id=100015173807698&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&count=19&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiHKqCWFHWn0an&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Habiba Manaa,Carmelo Messina,2019-05-18,1,Carmelo Messina oddio anche stranieri e terroni!! E mo la lega come fa? Si è infettata!,/habiba.manaa.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDkw1lA9fPA9AJI +Luca Mena,Carmelo Messina,2019-05-18,11,SALVINI il POPOLO e la TUA FORZA.EX PD,/profile.php?id=100022482734235&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDkw1lA9fPA9AJI +Sonia Mostocotto,Carmelo Messina,2019-05-18,4,"Luca Mena anch'io ex, non scrivo la parola.",/sonia.mostocotto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDkw1lA9fPA9AJI +Mariarosa Tarabella,Carmelo Messina,2019-05-18,12,"Habiba Manaa pensa al tuo PD, ormai lui si è infettato da tanto tempo, è in coma irreversibile....",/mariarosa.tarabella.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDkw1lA9fPA9AJI +Carmelo Messina,Carmelo Messina,2019-05-18,4,"Habiba Manaa ritorna al tuo paese , nelle capanne pdiota.",/carmelo.messina.733?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDkw1lA9fPA9AJI +Annita Terruli,Carmelo Messina,2019-05-18,,Carmelo Messina e sempre piena cosi anche a carnevale,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDkw1lA9fPA9AJI +Tiziana Sayan,Carmelo Messina,2019-05-18,,"Annita Terruli ...meglio,sono contenta per Milano....",/tiziana.sayan?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622554003155&p=10&count=19&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDkw1lA9fPA9AJI +Alfione Lentini,ROOT,2019-05-18,17,"5 Stelle a Pulire i cessi.. ahahaha Bravisismo, sono dei Traditori",/alfionee?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590879758101149&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBUYv0-oigUClVe&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luca Ferrari,Alfione Lentini,2019-05-18,,Che poi è un lavoro che ho fatto pure io,/profile.php?id=100024073925263&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590879758101149&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBUYv0-oigUClVe&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alfione Lentini,Alfione Lentini,2019-05-18,,Un Leader Politico in mezzo all gente che spettacolo...!!,/alfionee?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590879758101149&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBUYv0-oigUClVe&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Cancellieri,Alfione Lentini,2019-05-18,,Altro che i cessi sanno pulire,/silvana.cancellieri?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590879758101149&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBUYv0-oigUClVe&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Bruno Pastorino,Alfione Lentini,2019-05-18,,Alfione Lentini,/facetta50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590879758101149&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBUYv0-oigUClVe&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ferrer Palmaghini MAngela Caffara,ROOT,2019-05-18,256,W SALVINI W LA LEGA ABBASSO I 5 STELLE TRADITORI,/ferrer.palmaghini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538388155&count=13&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBE8rg87TVChh7l&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Federico Tarpini,Ferrer Palmaghini MAngela Caffara,2019-05-18,1,Va che ad aver tradito è la Lega una volta Nord,/profile.php?id=100010694650249&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538388155&count=13&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBE8rg87TVChh7l&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sara Antonella Casacci,Ferrer Palmaghini MAngela Caffara,2019-05-18,2,Federico Fedele Grigis avevano ... hai scritto bene :),/jolandalacorsara?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538388155&count=13&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBE8rg87TVChh7l&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sergio Tripoli,Ferrer Palmaghini MAngela Caffara,2019-05-18,,Ferrer Palmaghini MAngela Caffara sogna w5 stelle,/sergio.tripoli.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538388155&count=13&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBE8rg87TVChh7l&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gisella Puterio,Ferrer Palmaghini MAngela Caffara,2019-05-18,2,Federico Fedele Grigis lei è rimasto al passato. Il popolo sta con Salvini. Rassegnatevi tutti oppure ricorrete al Maalox,/gisella.puterio.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538388155&count=13&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBE8rg87TVChh7l&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Denni Deak,Ferrer Palmaghini MAngela Caffara,2019-05-18,1,Gisella Puterio gli analfabeti si. Quelli saranno sempre col capitanoooh.,/denni.deak.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538388155&count=13&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBE8rg87TVChh7l&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Graziana Nocentini,Ferrer Palmaghini MAngela Caffara,2019-05-18,,Ferrer Palmaghini MAngela Caffara insieme alla Meloni,/graziana.nocentini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538388155&count=13&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBE8rg87TVChh7l&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luigi Zanetti,Ferrer Palmaghini MAngela Caffara,2019-05-18,,,/luigi.zanetti.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538388155&count=13&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBE8rg87TVChh7l&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Adriano Paduano,Ferrer Palmaghini MAngela Caffara,2019-05-18,,5 Stelle a vita,/profile.php?id=100007094658091&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538388155&count=13&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBE8rg87TVChh7l&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marisa Di Nauta,ROOT,2019-05-18,15,A radio radicale stamattina commentavano che i selfie che ti chiedono sono tutti fasulli. Brutta cosa l'invidia 😂😂😂,/marisa.dinauta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411739958849073&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDY5vDNv8V3mgNE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Vittorio Maniaci,Marisa Di Nauta,2019-05-18,1,L'invidia li consuma.....,/vittorio.maniaci?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411739958849073&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDY5vDNv8V3mgNE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Vittorio Maniaci,Marisa Di Nauta,2019-05-18,1,,/vittorio.maniaci?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411739958849073&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDY5vDNv8V3mgNE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Federico Fedele Grigis,Ferrer Palmaghini MAngela Caffara,2019-05-18,6,Ferrer Palmaghini MAngela Caffara Se non era per i 5 Stelle e Salvini non sarebbe mai salito al governo e ricordati che avevano più del doppio dei suoi voti alle politiche,/federico.fedele.583?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538388155&p=10&count=13&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDFDcXL-vul-W5c +Sandra Piperno,Ferrer Palmaghini MAngela Caffara,2019-05-18,2,"Federico Fedele Grigis invece adesso è Salvini che ha raddoppiato i consensi,guarda un po'",/profile.php?id=100010598678767&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538388155&p=10&count=13&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDFDcXL-vul-W5c +Vagues de Chillon,ROOT,2019-05-18,14,Ça c'est l'Italie...Au moins lui se promène au milieu de son peuple.,/profile.php?id=100007760235458&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145664326488522&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQB3o-snO4U6oCNv&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Aureliana Zanetti,Vagues de Chillon,2019-05-18,,C est ça 😊,/aureliana.zanetti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145664326488522&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQB3o-snO4U6oCNv&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Raffaella Dardano,ROOT,2019-05-18,56,"È uno spettacolo, che da anni non si vedeva! Grande capitano italiano! Orgoglio di noi tutti!",/raffaella.dardano?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301909790698167&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBIsYl5EgJWHRz9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giusy Bonanno,Raffaella Dardano,2019-05-18,,Yessssss,/giusy.bonanno2?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301909790698167&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBIsYl5EgJWHRz9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fernando Quinti,Raffaella Dardano,2019-05-18,,☹️☹️☹️☹️☹️☹️☹️☹️ahahahahah,/fernando.quinti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301909790698167&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBIsYl5EgJWHRz9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Betty Bombardieri,ROOT,2019-05-18,13,Moltissima gente è rimasta a casa X vari motivi se ci fossimo tutti nn basterebbe questa piazza 🥰🥰🥰 grandi e bravi a chi c’era 😘😘😘,/betty.bombardieri?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145665309821757&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxJ0JdD7KqrjNf&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosa Alma,Betty Bombardieri,2019-05-18,1,Anche io avrei voluto essere a Milano ma non posso camminare e stare in piedi. Ma ho seguito la diretta sul tablet. Grazie a chi e' andato anche per me e famiglia.,/profile.php?id=100009452532861&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145665309821757&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxJ0JdD7KqrjNf&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alessandra Bottero,,2019-05-18,16,"Mai visto un affetto del genere. Contenta di averla vissuta anch’io quest’emozione. Giovani, adulti, anziani, famiglie, bambini..questo è il popolo che ti ama Matteo!",/alessandra.bottero?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=20&av=100013534782121&eav=AfaNAJFHUC1hYcB0t2ElOmPF74XFZDYSIfRD1sOsFcFOTC0_7dHPgYdgF7BG4fOzrbU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pinuccia Rynes,,2019-05-18,16,Come vedi chi ti ama ti segue. Lasciamoli pure rosicare sti quattro straccioni appesi ai balconi. MILANO ha risposto con il ❤,/pinuccia.rynes?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=20&av=100013534782121&eav=AfaNAJFHUC1hYcB0t2ElOmPF74XFZDYSIfRD1sOsFcFOTC0_7dHPgYdgF7BG4fOzrbU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mariagrazia Fanton,,2019-05-18,17,Sei un grande ministro e Milano oggi te lo ha gridato anche per chi non era lì 💚💚💚💚💚💚💚💚💚💚,/mariagrazia.fanton.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=20&av=100013534782121&eav=AfaNAJFHUC1hYcB0t2ElOmPF74XFZDYSIfRD1sOsFcFOTC0_7dHPgYdgF7BG4fOzrbU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Chiara Morinelli,,2019-05-18,15,Bellissimo discorso!!! Mi sarebbe piaciuto essere lì!!,/chiara.morinelli.56?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=20&av=100013534782121&eav=AfaNAJFHUC1hYcB0t2ElOmPF74XFZDYSIfRD1sOsFcFOTC0_7dHPgYdgF7BG4fOzrbU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nevio Lazzari,,2019-05-18,14,Giovani famiglie con i figli persone anziane...questa è l'Italia che mi piace non quella dei banchieri e delle multinazionali,/nevio.lazzari.58?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=20&av=100013534782121&eav=AfaNAJFHUC1hYcB0t2ElOmPF74XFZDYSIfRD1sOsFcFOTC0_7dHPgYdgF7BG4fOzrbU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Aida Goldburd,ROOT,2019-05-18,140,Questa è la vera democrazia! Evviva La Lega..Matteo e la liberta!!!! 💚👏🇮🇹👏💚👏🇮🇹💚,/aida.goldburd?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536893155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAks3ovAYIIxUJ9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Angela Dimaggio,Aida Goldburd,2019-05-18,4,Aida Goldburd ahahahahahahahah ma per favore.,/angela.dimaggio2?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536893155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAks3ovAYIIxUJ9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosa Arienzo,Aida Goldburd,2019-05-18,2,Angela Dimaggio vai a zappare !!!,/rosa.arienzo.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536893155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAks3ovAYIIxUJ9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna Vago,Aida Goldburd,2019-05-18,1,Rosa Arienzo e pure a cagare😂😂😂,/anna.vaghetti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622536893155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAks3ovAYIIxUJ9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Manlio Cassarà,ROOT,2019-05-18,14,"Ma quanto sono COGLIONI quelli che hanno buttato via tempo,soldi,vernice e stoffa per scrivere quei RIDICOLI striscioni contro di te???",/palermanlio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438419826719053&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBHlfwIH2_g41f7&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Manlio Cassarà,2019-05-18,3,Salvini é il re dei coglioni,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438419826719053&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBHlfwIH2_g41f7&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Meris Curnis,Manlio Cassarà,2019-05-18,1,Giangiacomo carretta. Che dire.... Mi fai divertire trooopppoooo giuda,/meris.curnis.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438419826719053&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBHlfwIH2_g41f7&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giovanna Mazzotti,Manlio Cassarà,2019-05-18,,Giangiacomo Carretta se fosse così dovresti essere il primo ad adorarlo,/giovanna.mazzotti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438419826719053&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBHlfwIH2_g41f7&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carlo Lorenzetti,Manlio Cassarà,2019-05-18,,Co.e chi scrive,/carlo.lorenzetti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438419826719053&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBHlfwIH2_g41f7&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Bonacina,Manlio Cassarà,2019-05-18,,Mai quanto un palermitano che vota Salvini! 😂,/profile.php?id=100004485288239&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438419826719053&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBHlfwIH2_g41f7&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Miguel Alessandro Cagnani,ROOT,2019-05-18,212,Potete mettere quanti striscioni volete... Più lo fate e più la gente voterà lega.... Intanto ve ne è stato tolto un altro in piazza duomo ahahaha,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,Ma sono di più quelli fascisti oggi.,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,4,Simone Galimi darmi del fascista senza manco conoscermi basandosi su quello che scrivo non mi sembra u a mossa molto intelligente,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,"Dai nostri commenti si capisce molto. Su cosa dovrei basarmi per giudicare il tuo orientamento politico? Sulla faccia o su ciò che scrivi? La seconda. E ciò che hai scritto qualche commento più sopra è fascista, dalla censura alla violenza come forma di repressione ideologica. È così",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,,Simone Galimi se uno ti scrive in uno striscione Simone figlio di..... Te che fai?,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marcello Colombo,Miguel Alessandro Cagnani,2019-05-18,2,Cagnani lascia perdere sto mentecatto e la sua dialettica anale,/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tiziana Sayan,Miguel Alessandro Cagnani,2019-05-18,2,"Massimiliano Simone ... la aggiorno Sig.Massimiliano...neppure i comunisti fanno ,di solito, una """"bella fine"""",...eh,la storia insegna !!!",/tiziana.sayan?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,"Marcellino, la prima lezione è gratuita. Contattami in privato",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio De Maria,Miguel Alessandro Cagnani,2019-05-18,1,,/giorgio.demaria.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio Proietti,Miguel Alessandro Cagnani,2019-05-18,,Miguel Alessandro Cagnani alla faccia della libertà FI espressione.,/giorgio.proietti.397?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,Ti senti minacciato?,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,,Simone Galimi finisce che chiappi delle Randellate,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Susanna Minghetti,Miguel Alessandro Cagnani,2019-05-18,,"Roberto Ardito senz'altro, ad iniziare dagli italiani morti nelle patetiche campagne di Russia,Africa, Grecia...ha un taccuino ?",/susanna.minghetti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,Miguel sta iniziando a capire.,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Marcello Colombo,Miguel Alessandro Cagnani,2019-05-18,3,Simone Galimi Ridi ridi...dovresti piangere ma l’ottimismo è il profumo della vita..mi sento di stare passando qualche minuto divertendomi a vedere fino a che punto uno che nemmeno mette la sua faccia sui social vuole arrivare,/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,,Simone Galimi con questo cosa vuoi insinuare? Se la gente ti vuole picchiare perché la pensi diversamente non è fascista è proprio cogliona,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,Tutti i facisti sono coglioni Miguel.,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,1,Simone Galimi ci sono dei coglioni fascisti come coglioni comunisti,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Lombardo Vincenzo,ROOT,2019-05-18,13,Dobbiamo vincere.... Assolutamente Nessun ministro è stato mai accolto così calorosamente,/lombardo.vincenzo.54?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407405270101649&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCbZlLC7ANudxVL&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Diego Menni,Lombardo Vincenzo,2019-05-18,,E vinceremo,/SuperDiegoilnumerouno?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407405270101649&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCbZlLC7ANudxVL&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,2,Simone Galimi sono stati rimossi dal polizia non da Salvini,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,"Perché giustamente se ci fosse il fascismo al governo io non potrei commentare sotto la pagina del suo esponente maggiore. Hai ragione, sai?",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,2,Simone Galimi infatti.... In maniera negativa come lo stai facendo tu....,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Marcello Colombo,Miguel Alessandro Cagnani,2019-05-18,6,"Simone Galimi il fascista ci fosse ancora oggi ti aveva gia identificato e gambizzato, invece che lasciarti scrivere le tua puttanate da saccente sui social. Bacioni",/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Marco Lorenzoni,Miguel Alessandro Cagnani,2019-05-18,,Simone Galimi Sei quasi simpatico,/marco.lorenzoni.31?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,1,"Marcello, sui social è difficile, proviamo di persona?",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Marcello Colombo,Miguel Alessandro Cagnani,2019-05-18,,Simone Galimi proviamo di persona COSA di preciso?,/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Marcello Colombo,Miguel Alessandro Cagnani,2019-05-18,2,Simone Galimi mi stai minacciando per caso?,/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,Andiamo a dire queste stesse cose che sto dicendo al prossimo comizio di Salvini. Vediamo come finisce,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,"Utilizza l'etichetta che preferisci per descrivere il tuo orientamento politico, ciò che conta è la sostanza, non i nomi.",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,2,Simone Galimi quindi? In quale sostanza sarei fascista? Argomenta,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Donatella Macis,Miguel Alessandro Cagnani,2019-05-18,9,Massimiliano Simone istruisciti e leggi cosa era il fascismo...smettetela con queste barzellette se c era il fascismo non chiacchieravi tranquillo,/profile.php?id=100007684380619&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,6,"Il tuo commento è fascista, ridere di fronte alla censura delle idee altrui è un comportamento fascista. Non ci arrivavi da solo?",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,8,Simone Galimi lo sai che mettere striscioni che causano problemi di ordine pubblico è vietato?,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,3,"Donatella, sei tu che devi studiare cosa è stato il fascismo per captare questi segnali di rigurgito che ormai da troppo tempo riempiono la nostra quotidianità. Studia",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Laura Machieraldo,Miguel Alessandro Cagnani,2019-05-18,1,"Massimiliano Simone hai ragione, ma noi non siamo fascisti 😘",/laura.machieraldo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,11,Simone Galimi se in Italia ci fosse il fascismo a quest'ora non commenteresti sotto la pagina di Salvini perché saresti in gabbia,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,"I problemi di disordine pubblico non vengono causati da un paio di striscioni, finiscila di delirare.",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Silvia Aldini,ROOT,2019-05-18,11,Instancabile sempre in mezzo alla sua gente. Ci vediamo domani a Sassuolo!,/silvia.aldini.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325211818154538&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCt7111m8Hk0VOa&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Francesco Furnari,Silvia Aldini,2019-05-18,,https://www.bing.com/videos/search?view=detail&mid=9A034C7DE7D9FD945E239A034C7DE7D9FD945E23&shtp=Facebook&shid=ca2311c7-e26f-4969-836d-9b2b76eca3bc&shtk=Vm90YSBBbnRvbmlvIExhIFRyaXBwYQ%3D%3D&shdk=Vm90YSBBbnRvbmlvISBWb3RhIEFudG9uaW8h&shhk=u5KSRlWdOC6Zw1wRhhYHfAix%2BvOLT8RZegPmoVCZSTg%3D&form=VDSHFB&shth=OSH.iYS0Hzp38oOzj8xvhoVyKg&fbclid=IwAR3f_JHrYPa6P4nwYKEAiHpZs2PY8h7uuQMuagVrDpmLNGC5grT2rIjPXGI,/francescoemaria.furnari?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325211818154538&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCt7111m8Hk0VOa&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Di Gi,Miguel Alessandro Cagnani,2019-05-18,,Miguel Alessandro Cagnani 🤣🤣🤣🤣🤣,/did.gio.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Massimiliano Simone,Miguel Alessandro Cagnani,2019-05-18,9,Occhio che i fascisti non fanno mai una buona fine...,/massimiliano.simone.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,7,Il fascista non ride mai per ultimo.,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,25,Simone Galimi non sono fascista ma sono leghista.... Vuoi che ti compri un po' di malox?,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Marcello Colombo,Miguel Alessandro Cagnani,2019-05-18,4,Massimiliano Simone moriremo tutti appesi a loreto solo per darti una piccola soddifaziine allora,/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Roberto Ardito,Miguel Alessandro Cagnani,2019-05-18,2,Massimiliano Simone ma prima di morire se ne porta molti con se....,/roberto.ardito.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Andrea Saccone,Miguel Alessandro Cagnani,2019-05-18,10,"Massimiliano Simone tanto quello sapete fare additare del fascista non avendo idee,vi fa sentire superiori e pieni,ma tanto ,la rimanete nel cesso",/andrea.saccone.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Dexter Bury,Miguel Alessandro Cagnani,2019-05-18,2,Ocio che i fascisti ti tirano i piedi di notte,/profile.php?id=100015415207217&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Valentina Trabacchi,ROOT,2019-05-18,11,ha detto Zingaretti che Salvini cominciasse a prepararsi: Domenica 26 vincono loro? Cosa vincono? un bel calcioinkulo spero!,/valentina.trabacchi.ona?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590876048101520&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDoBzCKwcSR3sWf&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Teresa Maria Carrara,Valentina Trabacchi,2019-05-18,2,Lo spero anch io,/profile.php?id=100015075663629&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590876048101520&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDoBzCKwcSR3sWf&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gabriella Spica,Valentina Trabacchi,2019-05-18,,Un cofanetto con le repliche di Montalbano 😎,/gabriella.spica?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590876048101520&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDoBzCKwcSR3sWf&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Miguel Alessandro Cagnani,ROOT,2019-05-18,213,Potete mettere quanti striscioni volete... Più lo fate e più la gente voterà lega.... Intanto ve ne è stato tolto un altro in piazza duomo ahahaha,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,Ma sono di più quelli fascisti oggi.,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,4,Simone Galimi darmi del fascista senza manco conoscermi basandosi su quello che scrivo non mi sembra u a mossa molto intelligente,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,"Dai nostri commenti si capisce molto. Su cosa dovrei basarmi per giudicare il tuo orientamento politico? Sulla faccia o su ciò che scrivi? La seconda. E ciò che hai scritto qualche commento più sopra è fascista, dalla censura alla violenza come forma di repressione ideologica. È così",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,,Simone Galimi se uno ti scrive in uno striscione Simone figlio di..... Te che fai?,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marcello Colombo,Miguel Alessandro Cagnani,2019-05-18,2,Cagnani lascia perdere sto mentecatto e la sua dialettica anale,/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tiziana Sayan,Miguel Alessandro Cagnani,2019-05-18,2,"Massimiliano Simone ... la aggiorno Sig.Massimiliano...neppure i comunisti fanno ,di solito, una """"bella fine"""",...eh,la storia insegna !!!",/tiziana.sayan?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,"Marcellino, la prima lezione è gratuita. Contattami in privato",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio De Maria,Miguel Alessandro Cagnani,2019-05-18,1,,/giorgio.demaria.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio Proietti,Miguel Alessandro Cagnani,2019-05-18,,Miguel Alessandro Cagnani alla faccia della libertà FI espressione.,/giorgio.proietti.397?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&count=48&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCn8Lp99M5iF6C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Vittorio Maniaci,,2019-05-18,14,Avanti tutta ..... La pacchia sta per finire anche per i preti affaristi...e lestofanti 👏,/vittorio.maniaci?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=30&av=100013534782121&eav=AfbCPiOPO6xHLF_plAtijbRxYQsMTe3ixCrVQ8m89DQ4_fZdbNX1nFUY9CLWPHp6iZQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Catia Citti,,2019-05-18,13,Un ragazzo di colore fa un selfie con salvini😁 bellissimoooooo,/catia.citti.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=30&av=100013534782121&eav=AfbCPiOPO6xHLF_plAtijbRxYQsMTe3ixCrVQ8m89DQ4_fZdbNX1nFUY9CLWPHp6iZQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marina Moretti,,2019-05-18,12,"Matteo energiaaaaa, ti vogliono distruggere in ogni modo ma noi non ti molliamo. Tranquillo!!",/marina.moretti.3597?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=30&av=100013534782121&eav=AfbCPiOPO6xHLF_plAtijbRxYQsMTe3ixCrVQ8m89DQ4_fZdbNX1nFUY9CLWPHp6iZQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marilena Grippo,,2019-05-18,8,Non ho parole 😀 mai vista una folla così!!! Il ministro più amato che io abbia mai visto 👍 avanti tutta 🇮🇹 w l'Italia,/marilena.grippo.16?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=30&av=100013534782121&eav=AfbCPiOPO6xHLF_plAtijbRxYQsMTe3ixCrVQ8m89DQ4_fZdbNX1nFUY9CLWPHp6iZQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franca Scalzi,,2019-05-18,8,"Vediamo stasera se qualche tg ne parla di questo grande evento, grande capitano😘",/franca.scalzi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=30&av=100013534782121&eav=AfbCPiOPO6xHLF_plAtijbRxYQsMTe3ixCrVQ8m89DQ4_fZdbNX1nFUY9CLWPHp6iZQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Virna Pellegrinelli,,2019-05-18,7,"Esempio di educazione, a differenza d'altri! 👍",/virna.pellegrinelli?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=30&av=100013534782121&eav=AfbCPiOPO6xHLF_plAtijbRxYQsMTe3ixCrVQ8m89DQ4_fZdbNX1nFUY9CLWPHp6iZQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,Ti senti minacciato?,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,,Simone Galimi finisce che chiappi delle Randellate,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Susanna Minghetti,Miguel Alessandro Cagnani,2019-05-18,,"Roberto Ardito senz'altro, ad iniziare dagli italiani morti nelle patetiche campagne di Russia,Africa, Grecia...ha un taccuino ?",/susanna.minghetti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,Miguel sta iniziando a capire.,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Marcello Colombo,Miguel Alessandro Cagnani,2019-05-18,3,Simone Galimi Ridi ridi...dovresti piangere ma l’ottimismo è il profumo della vita..mi sento di stare passando qualche minuto divertendomi a vedere fino a che punto uno che nemmeno mette la sua faccia sui social vuole arrivare,/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,,Simone Galimi con questo cosa vuoi insinuare? Se la gente ti vuole picchiare perché la pensi diversamente non è fascista è proprio cogliona,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,Tutti i facisti sono coglioni Miguel.,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,1,Simone Galimi ci sono dei coglioni fascisti come coglioni comunisti,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=10&count=48&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDgYtA25LStSNxf +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,2,Simone Galimi sono stati rimossi dal polizia non da Salvini,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,"Perché giustamente se ci fosse il fascismo al governo io non potrei commentare sotto la pagina del suo esponente maggiore. Hai ragione, sai?",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,2,Simone Galimi infatti.... In maniera negativa come lo stai facendo tu....,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Marcello Colombo,Miguel Alessandro Cagnani,2019-05-18,6,"Simone Galimi il fascista ci fosse ancora oggi ti aveva gia identificato e gambizzato, invece che lasciarti scrivere le tua puttanate da saccente sui social. Bacioni",/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Marco Lorenzoni,Miguel Alessandro Cagnani,2019-05-18,,Simone Galimi Sei quasi simpatico,/marco.lorenzoni.31?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,1,"Marcello, sui social è difficile, proviamo di persona?",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Marcello Colombo,Miguel Alessandro Cagnani,2019-05-18,,Simone Galimi proviamo di persona COSA di preciso?,/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Marcello Colombo,Miguel Alessandro Cagnani,2019-05-18,2,Simone Galimi mi stai minacciando per caso?,/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,Andiamo a dire queste stesse cose che sto dicendo al prossimo comizio di Salvini. Vediamo come finisce,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=20&count=48&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCcxUSoVxZRJe0E +Mascia Randi,ROOT,2019-05-18,6,Matteo via le mele marce! Grande raduno sotto la pioggia!,/MasciaRandi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411723368850732&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCntvRezEYvtsyw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Mascia Randi,2019-05-18,,é lui la mela.marcia piú grande,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411723368850732&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCntvRezEYvtsyw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,"Utilizza l'etichetta che preferisci per descrivere il tuo orientamento politico, ciò che conta è la sostanza, non i nomi.",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,2,Simone Galimi quindi? In quale sostanza sarei fascista? Argomenta,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Donatella Macis,Miguel Alessandro Cagnani,2019-05-18,9,Massimiliano Simone istruisciti e leggi cosa era il fascismo...smettetela con queste barzellette se c era il fascismo non chiacchieravi tranquillo,/profile.php?id=100007684380619&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,6,"Il tuo commento è fascista, ridere di fronte alla censura delle idee altrui è un comportamento fascista. Non ci arrivavi da solo?",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,8,Simone Galimi lo sai che mettere striscioni che causano problemi di ordine pubblico è vietato?,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,3,"Donatella, sei tu che devi studiare cosa è stato il fascismo per captare questi segnali di rigurgito che ormai da troppo tempo riempiono la nostra quotidianità. Studia",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Laura Machieraldo,Miguel Alessandro Cagnani,2019-05-18,1,"Massimiliano Simone hai ragione, ma noi non siamo fascisti 😘",/laura.machieraldo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,11,Simone Galimi se in Italia ci fosse il fascismo a quest'ora non commenteresti sotto la pagina di Salvini perché saresti in gabbia,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,,"I problemi di disordine pubblico non vengono causati da un paio di striscioni, finiscila di delirare.",/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=30&count=48&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDtYXNTLO8vwFFN +Di Gi,Miguel Alessandro Cagnani,2019-05-18,,Miguel Alessandro Cagnani 🤣🤣🤣🤣🤣,/did.gio.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Massimiliano Simone,Miguel Alessandro Cagnani,2019-05-18,9,Occhio che i fascisti non fanno mai una buona fine...,/massimiliano.simone.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Simone Galimi,Miguel Alessandro Cagnani,2019-05-18,7,Il fascista non ride mai per ultimo.,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Miguel Alessandro Cagnani,Miguel Alessandro Cagnani,2019-05-18,25,Simone Galimi non sono fascista ma sono leghista.... Vuoi che ti compri un po' di malox?,/miguelalessandro.cagnani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Marcello Colombo,Miguel Alessandro Cagnani,2019-05-18,4,Massimiliano Simone moriremo tutti appesi a loreto solo per darti una piccola soddifaziine allora,/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Roberto Ardito,Miguel Alessandro Cagnani,2019-05-18,2,Massimiliano Simone ma prima di morire se ne porta molti con se....,/roberto.ardito.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Andrea Saccone,Miguel Alessandro Cagnani,2019-05-18,10,"Massimiliano Simone tanto quello sapete fare additare del fascista non avendo idee,vi fa sentire superiori e pieni,ma tanto ,la rimanete nel cesso",/andrea.saccone.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Dexter Bury,Miguel Alessandro Cagnani,2019-05-18,2,Ocio che i fascisti ti tirano i piedi di notte,/profile.php?id=100015415207217&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515558155&p=40&count=48&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBNTz9y_LCwL3AD +Giuseppe Pinto,ROOT,2019-05-18,4,X quanto tempo ancora dobbiamo subire i 5 pirla stellati?,/giuseppe.pinto.1840?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145664676488487&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCnr9WqLxMTDdCl&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Liliana Tessera,,2019-05-18,7,Il popolo è con te questa è la dimostrazione più vera del tuo operato e della stima che abbiamo in te,/casa.delsorriso.796?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=40&av=100013534782121&eav=AfZQTO_C0C5HyuEAEUHztwXh7Dz3CcOpmRnRoCyQqWkUHRmWisN8TsiR0HcLd4aPdnc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Perale,,2019-05-18,6,"Grande Matteo , bravo, anche noi abbiamo un cuore per te ciao bravo matteooooooo",/gabriella.perale.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=40&av=100013534782121&eav=AfZQTO_C0C5HyuEAEUHztwXh7Dz3CcOpmRnRoCyQqWkUHRmWisN8TsiR0HcLd4aPdnc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandro Gobbo,,2019-05-18,6,💚💚💚💚💚 Matteo Salvini sei UNICO.....CAPITANO non mollare siamo tutti con te 💚💚💚💚💚,/alessandro.gobbo1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=40&av=100013534782121&eav=AfZQTO_C0C5HyuEAEUHztwXh7Dz3CcOpmRnRoCyQqWkUHRmWisN8TsiR0HcLd4aPdnc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marilu Ivaldi Necchi,,2019-05-18,5,"Matteo, sei un grande uomo, grande ministro grande cuore! Avanti così e non mollare!",/marilu.ivaldinecchi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=40&av=100013534782121&eav=AfZQTO_C0C5HyuEAEUHztwXh7Dz3CcOpmRnRoCyQqWkUHRmWisN8TsiR0HcLd4aPdnc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Piergiacomo Toninelli,,2019-05-18,5,C'è un modo per liberarci dalla sinistra e dalla schiavitù di questa europetta si chiama VOTO,/profile.php?id=100011745004718&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=40&av=100013534782121&eav=AfZQTO_C0C5HyuEAEUHztwXh7Dz3CcOpmRnRoCyQqWkUHRmWisN8TsiR0HcLd4aPdnc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bruno Ceoldo,,2019-05-18,3,Matteo sei unico hai contro tutti ma non gli italiani tu non cederai mai continua sempre così 👍👍👍,/profile.php?id=100007495877249&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=40&av=100013534782121&eav=AfZQTO_C0C5HyuEAEUHztwXh7Dz3CcOpmRnRoCyQqWkUHRmWisN8TsiR0HcLd4aPdnc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pilla Serena,,2019-05-18,,Matteo i bambini erano stanchi sono andata via poi cera un vostro colllaboratore si quelli con le maglie giale che dava fastidio i bambini ci ha invitati ad andar via,/serena.pcc?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=40&av=100013534782121&eav=AfZQTO_C0C5HyuEAEUHztwXh7Dz3CcOpmRnRoCyQqWkUHRmWisN8TsiR0HcLd4aPdnc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Adina Arionski,,2019-05-18,1,Look at this one: (translation in case it has not all the linguistic versions) On May 26th you decide the future of Europe! Choose your future!,/mia.tia.338?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=40&av=100013534782121&eav=AfZQTO_C0C5HyuEAEUHztwXh7Dz3CcOpmRnRoCyQqWkUHRmWisN8TsiR0HcLd4aPdnc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elisa Melchiori,ROOT,2019-05-18,183,E quelli del Pd stan già dicendo che c'erano 4 gatti 🤣,/elisa.melchiori.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&count=39&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAtiJPV7faCxqjo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,Elisa Melchiori,2019-05-18,1,"Elisa Melchiori hanno tutti il sedere arrossato. Ribadisco: brucia, uhhh se brucia!! 💪",/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&count=39&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAtiJPV7faCxqjo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,Elisa Melchiori,2019-05-18,,Claudio Bertaggia Fosse solo un pelino! 🤣,/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&count=39&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAtiJPV7faCxqjo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Agostini,Elisa Melchiori,2019-05-18,1,Mely Mel importante che parlino degli striscioni contro salvini,/AndreaAgostiniMoto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&count=39&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAtiJPV7faCxqjo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Osvaldo Locatelli,Elisa Melchiori,2019-05-18,1,Elisa Melchiori a parte che per battere la sinistra di gatti ne bastano 2. 😂😂,/osvaldo.locatelli.98?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&count=39&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAtiJPV7faCxqjo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tiziana Sayan,Elisa Melchiori,2019-05-18,2,"Claudio Bertaggia ....da Zingaretti in una conferenza politica erano 45...Non 45.000...no,no..45...di numero !!!",/tiziana.sayan?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&count=39&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAtiJPV7faCxqjo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Enio Doneda,Elisa Melchiori,2019-05-18,1,Maria Rita Marchese ma loro sono falsi fino al midollo,/enio.doneda?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&count=39&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAtiJPV7faCxqjo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Compagnoni Fausto,Elisa Melchiori,2019-05-18,2,Andrea Agostini che miseria,/compagnoni.fausto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&count=39&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAtiJPV7faCxqjo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Graziella Tonelli,Elisa Melchiori,2019-05-18,,Elisa Melchiori questi non sono tanti speriamo alla moltiplicazione dei pani,/grqzuella.tonelli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&count=39&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAtiJPV7faCxqjo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elvira Freato,Elisa Melchiori,2019-05-18,,,/profile.php?id=100009002879181&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&count=39&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAtiJPV7faCxqjo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sauro Bannato,Elisa Melchiori,2019-05-18,,"Fabio Serzio Cribbio eri li a contarli ????? Le sparate grosse voi Komunisti ....scommetto che ti sei contato anche te per errore , e venire su questa pagina postando farlocche parole ti fa sentire intelligente o invidioso ???? PS io non vado su pagine che non approvo ....cosa ci vado a fare ??? preferisco questa pagina o portare fuori mia moglie a pranzo o a cena ne traggo piacimento sia fisico che mentale",/sauro.bannato?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&count=39&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAtiJPV7faCxqjo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +MariaRosaria Ruocco,Elisa Melchiori,2019-05-18,,"Elisa Melchiori quattro gatti no,ma la foto e' in campo lungo quindi sembrano molti di più,comunque e una bella partecipazione",/mariarosaria.ruocco.71?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=10&count=39&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAvrKfmEa34VIe0 +Maria Luisa,Elisa Melchiori,2019-05-18,,Elisa Melchiori anno già detto anche che accozzaglia,/luisa.disalvo.54?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=10&count=39&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAvrKfmEa34VIe0 +Andrea Agostini,Elisa Melchiori,2019-05-18,7,,/AndreaAgostiniMoto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=10&count=39&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAvrKfmEa34VIe0 +Mara Ricchini Abbo,Elisa Melchiori,2019-05-18,1,Angelo Federici disperati sarete voi. Dopo il video. Delle foto te ne fai poco,/mara.ricchini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=10&count=39&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAvrKfmEa34VIe0 +Marcello Colombo,Elisa Melchiori,2019-05-18,1,Elisa Melchiori be dalla fabbrica delle cazzate cosa c’era da aspettarsi?,/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=10&count=39&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAvrKfmEa34VIe0 +Venerina Zanutto,Elisa Melchiori,2019-05-18,4,qualcuno che rosica ha messo la foto della piazza di stamattina alle 9 ...ha ha ...roba da matti ..e ha fatto pure commento idiota ...vergogna....,/venerina.zanutto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=10&count=39&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAvrKfmEa34VIe0 +Valeria de Vito,Elisa Melchiori,2019-05-18,2,"Mai Penrai mettici la faccia quando dai un giudizio! Mostra il tuo volto ,il tuo nomee il tuo cognome",/valeria.devito.56?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=10&count=39&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAvrKfmEa34VIe0 +Cristina Stallone,Elisa Melchiori,2019-05-18,2,"Fabio Serzio davvero? Che nonno fortunato, guarda caso ho giusto due ruote da regalarti, così può comodamente fare la cariola",/marvin.rover.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=10&count=39&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAvrKfmEa34VIe0 +Mely Mel,Elisa Melchiori,2019-05-18,2,Andrea Agostini Per non dimenticare.,/vivien.ladegas?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=10&count=39&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAvrKfmEa34VIe0 +Silvi We,Elisa Melchiori,2019-05-18,,"Mai Penrai Troll, alle 11:45.",/silvi.we.94?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=10&count=39&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAvrKfmEa34VIe0 +Fiorin Fiorello,ROOT,2019-05-18,10,Gli unici nemici li hai in televisione specialmente su la7... Tu hai il popolo con tè.. Loro dono poca cosa...,/fiorin.fiorello.94?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366818134178296&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBhinfY0jrg8sXs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Oliviero Ferrari,Fiorin Fiorello,2019-05-18,11,"Purtroppo non è così, tutti i media sono contro Matteo, io sono in pensione e seguo agora, la 7 e Sky , tutti che se la suonano e se la cantano fra di loro, è una vergogna, i poteri forti devono smetterla di cercare di convincerci della loro verità,Matteo per sempre!!!",/oliviero.ferrari.587?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366818134178296&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBhinfY0jrg8sXs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Glori Glori,Fiorin Fiorello,2019-05-18,,Ma le persone per bene sono con il nostro grande Capitano,/glori.glori.54379236?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366818134178296&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBhinfY0jrg8sXs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Monica Bellezza Italiana,Fiorin Fiorello,2019-05-18,,Stai Serena 😁,/monica.miri21?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366818134178296&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBhinfY0jrg8sXs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisabetta Cenci,Fiorin Fiorello,2019-05-18,,"Oliviero Ferrari purtroppo sì, è insopportabile la faziosità dell'informazione della quasi totalità dei giornalisti, una vergogna!!!",/profile.php?id=100008402479153&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366818134178296&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBhinfY0jrg8sXs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Oliviero Ferrari,Fiorin Fiorello,2019-05-18,,"Ma Matteo è inossidabile e noi lo sosteniamo ad oltranza, guai alle toghe politicizzate se oseranno osteggiare Salvini!!!!!!",/oliviero.ferrari.587?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366818134178296&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBhinfY0jrg8sXs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianluca Furlan,Elisa Melchiori,2019-05-18,2,Senxa il maltempo sarebbero stati molti di più,/profile.php?id=100011279413623&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=20&count=39&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDpUqprlKfKJcka +Diana Vicenzi,Elisa Melchiori,2019-05-18,,Veramente,/diana.vicenzi.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=20&count=39&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDpUqprlKfKJcka +Mario Lupi,Elisa Melchiori,2019-05-18,2,Elisa Melchiori e bevono bicchieri di Valium!,/mario.lupi.1654?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=20&count=39&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDpUqprlKfKJcka +Valeria Demuro,Elisa Melchiori,2019-05-18,6,"Elisa Melchiori si , il 26 vedremo quanti gatti saranno. 💪",/valeria.demuro.16?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=20&count=39&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDpUqprlKfKJcka +Claudio Bertaggia,Elisa Melchiori,2019-05-18,4,Elisa Melchiori perche se contando i partecipanti alle loro feste gli rode un pelino il culetto 🤣,/claudio.bertaggia.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=20&count=39&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDpUqprlKfKJcka +Fabio Serzio,Elisa Melchiori,2019-05-18,1,Cristina Stallone se mio nonno avesse avuto le ruote era una carriola,/fabio.serzio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=20&count=39&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDpUqprlKfKJcka +Andrea Saccone,Elisa Melchiori,2019-05-18,5,"Forse il PD si confonde con i loro comizi,al chiuso e con persone sui 65 di media",/andrea.saccone.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=20&count=39&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDpUqprlKfKJcka +Antonia Proietto,Elisa Melchiori,2019-05-18,,Maria Cristina Lasagni concordo,/antonia.proietto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=20&count=39&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDpUqprlKfKJcka +Milena Segalini,Elisa Melchiori,2019-05-18,4,Elisa Melchiori lasciamoli rosicare domenica sarà un trionfo W Salvini!!!!!,/milena.segalini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=20&count=39&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDpUqprlKfKJcka +Valeria Baccaro,,2019-05-18,11,Mamma mia!!!!!nonostante il tempo c è un popolo di gente! Forza Matteo,/valeria.baccaro.58?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=50&av=100013534782121&eav=AfYO8rMWwj4ywTwebRcyIFBkqDVs5jEAbL3BuhxK8l3rgZxgMOU8jmFC-OZi6h6OPAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Catalano,,2019-05-18,,"MI VERGOGNARSI VOTARE SINISTROIDI ,5STELLE , ALLORA SI CHE È VERGOGNOSO",/roberto.catalano.7355?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=50&av=100013534782121&eav=AfYO8rMWwj4ywTwebRcyIFBkqDVs5jEAbL3BuhxK8l3rgZxgMOU8jmFC-OZi6h6OPAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carmen Sorrentino,,2019-05-18,10,"È inutile che criticate ,solo lui ha creato questo ,l amore della gente che vuole continuare ad amare la sua Italia ,senza intromissioni !!",/carmen.sorrentino.566?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=50&av=100013534782121&eav=AfYO8rMWwj4ywTwebRcyIFBkqDVs5jEAbL3BuhxK8l3rgZxgMOU8jmFC-OZi6h6OPAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vincenza Cottone,,2019-05-18,9,Anche tu ci hai regalato un sabato indimenticabile..saremo con te Capitano,/vincenza.cottone.52?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=50&av=100013534782121&eav=AfYO8rMWwj4ywTwebRcyIFBkqDVs5jEAbL3BuhxK8l3rgZxgMOU8jmFC-OZi6h6OPAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Risaliti,,2019-05-18,9,Anche con la pioggia piazza piena rosicate rosicate.Speravate nel mal tempo? Attaccatevi,/laura.risaliti.50?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=50&av=100013534782121&eav=AfYO8rMWwj4ywTwebRcyIFBkqDVs5jEAbL3BuhxK8l3rgZxgMOU8jmFC-OZi6h6OPAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Deborah Coraggia,,2019-05-18,4,"Ciao Matteo , uno di noi, che peccato non essere li. Sei 1 di noi! Grande!",/deborah.coraggia?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=50&av=100013534782121&eav=AfYO8rMWwj4ywTwebRcyIFBkqDVs5jEAbL3BuhxK8l3rgZxgMOU8jmFC-OZi6h6OPAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anny de Paoli,,2019-05-18,9,Alla faccia di coloro che ti odiano....io ti adoro x quello che dici e x quello che fai!!!! 💓💓💓,/anny.depaoli?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=50&av=100013534782121&eav=AfYO8rMWwj4ywTwebRcyIFBkqDVs5jEAbL3BuhxK8l3rgZxgMOU8jmFC-OZi6h6OPAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorenzo Garziera,,2019-05-18,8,Un vento nuovo finalmente soffia in Italia e in Europa ... Si chiama Matteo Salvini! Grazie Dio ti Benedica!,/lorenzo.garziera?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=50&av=100013534782121&eav=AfYO8rMWwj4ywTwebRcyIFBkqDVs5jEAbL3BuhxK8l3rgZxgMOU8jmFC-OZi6h6OPAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sylvia Spink,,2019-05-18,9,This man is the best political man for Italy.,/sylvia.spink.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=50&av=100013534782121&eav=AfYO8rMWwj4ywTwebRcyIFBkqDVs5jEAbL3BuhxK8l3rgZxgMOU8jmFC-OZi6h6OPAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Cristina Lasagni,Elisa Melchiori,2019-05-18,13,Elisa Melchiori certo. A loro brucia parecchio!,/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=30&count=39&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC61-8sfAfMeEQH +Maria Rita Marchese,Elisa Melchiori,2019-05-18,3,Elisa Melchiori dicono che la piazza non era piena come si aspettavano .,/profile.php?id=100012453963500&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=30&count=39&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC61-8sfAfMeEQH +Elisa Melchiori,Elisa Melchiori,2019-05-18,1,Maria Cristina Lasagni,/elisa.melchiori.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=30&count=39&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC61-8sfAfMeEQH +Fabio Serzio,Elisa Melchiori,2019-05-18,2,"10 mila non sono 4 gatti, ma meno della metà dei partecipanti previsti",/fabio.serzio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=30&count=39&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC61-8sfAfMeEQH +Angelo Federici,Elisa Melchiori,2019-05-18,11,Elisa Melchiori pubblicano foto della piazza di questa mattina alle 8.....quanto sono disperati,/profile.php?id=100014196968138&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=30&count=39&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC61-8sfAfMeEQH +Luisellamuzi Luisella Muzi,Elisa Melchiori,2019-05-18,2,Elisa Melchiori PIDIOTI INVIDIOSI !!!!!!,/luisellamuzi.luisellamuzi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=30&count=39&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC61-8sfAfMeEQH +Cristina Novelli,Elisa Melchiori,2019-05-18,3,Fabio Serzio il fatto che piova a dirotto ti dice niente?,/cristina.novelli.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=30&count=39&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC61-8sfAfMeEQH +Cristina Stallone,Elisa Melchiori,2019-05-18,7,"Fabio Serzio solo perché pioveva, se ci fosse stato il sole ce ne sarebbero stati almeno il doppio.",/marvin.rover.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=30&count=39&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC61-8sfAfMeEQH +Mai Penrai,Elisa Melchiori,2019-05-18,3,Questa è la foto che pubblicate. Se non era vuota ci si stava comodi in piazza.,/mai.penrai.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522043155&p=30&count=39&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC61-8sfAfMeEQH +Luciana Mariotti,ROOT,2019-05-18,9,Grande capitano giù le mani dal nostro capitano sei l'unico che può cambiare l'Italia siamo tutti con te avanti tutta,/luciana.mariotti.33?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_1119015508488178&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA-1ag384-CUb9y&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Luciana Mariotti,2019-05-18,,puó cambiare l'Italia in peggio,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_1119015508488178&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA-1ag384-CUb9y&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sabrina Maiorana,ROOT,2019-05-18,92,e pensa che c'è chi publica foto della piazza vuota.saranno di quando ci è andato renzi??,/sabrina.maiorana.33?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622540093155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHNCgnNcTCcEoE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Tardini,Sabrina Maiorana,2019-05-18,2,Sabrina Maiorana sì sì infatti l ha messa per farci vedere la differenza con oggi 😂rosicate rosicate,/maria.tardini.94?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622540093155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHNCgnNcTCcEoE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Venerina Zanutto,Sabrina Maiorana,2019-05-18,1,Sabrina Maiorana no era la piazza alle i di stamattina a ...non ho parole....,/venerina.zanutto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622540093155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHNCgnNcTCcEoE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Luisa Pongiluppi,Sabrina Maiorana,2019-05-18,5,"Sabrina Maiorana pochi minuti fa, un certo Martelloni, giornalista di RAI news 24,dice che p. zza Duomo non era piena. A fianco c'era poco. È logico. Da lì non si vedeva il palco. Guardando il video, mi sembrava di vedere un mare di persone. Chissà dove era. Forse il giornalista ha sbagliato piazza",/marialuisa.pongiluppi.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622540093155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHNCgnNcTCcEoE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Franco Galisai,Sabrina Maiorana,2019-05-18,7,Questa è la realtà cari rosiconi😂,/franco.gallisai?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622540093155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHNCgnNcTCcEoE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe E Cettina Nasca,Sabrina Maiorana,2019-05-18,1,Franco Galisai tra un Po le stesse immagini le taroccano x in il pd,/giuseppeecettina.nasca?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622540093155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHNCgnNcTCcEoE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Basili,Sabrina Maiorana,2019-05-18,1,Erano le foto delle 7 di mattina,/paola.basili.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622540093155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHNCgnNcTCcEoE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Venerina Zanutto,Sabrina Maiorana,2019-05-18,,Paola Basili siiiii,/venerina.zanutto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622540093155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHNCgnNcTCcEoE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carmen Patrizia,Sabrina Maiorana,2019-05-18,,Sabrina Maiorana bella questa brava! E avanti tutta capitano,/carmen.patrizia.92?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622540093155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHNCgnNcTCcEoE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Walter Bishop,ROOT,2019-05-18,8,Quanti fascisti e quanti brutti e cattivi in piazza... Ho appena visto sky tg24 dove il servizio su Milano è stato ridotto ad una Intervista a Calenda... Manipolatori mediatici,/ugo.foscolo.1840070?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_641991549597683&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC4mhbjai1GjVyj&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sonia Pannunzi,Walter Bishop,2019-05-18,1,SkyPD24 vorrai dire 😂😂😂,/signorina.silvani.5494?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_641991549597683&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC4mhbjai1GjVyj&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nicolò Chiapperini,ROOT,2019-05-18,68,E i rosiconi poverini che pubblicavano le foto del palco alle 9 di stamattina 😂😂😂😂,/nicolo.chiapperini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622514758155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDn-SidoVQ47i90&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giancarlo Contarino,Nicolò Chiapperini,2019-05-18,,Nicolò Chiapperini poveri dementi 😂😂😂,/profile.php?id=100009471039173&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622514758155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDn-SidoVQ47i90&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nicolò Chiapperini,Nicolò Chiapperini,2019-05-18,2,"Giancarlo Contarino stanno impazzendo , non sanno più a cosa appigliarsi",/nicolo.chiapperini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622514758155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDn-SidoVQ47i90&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Franco Galisai,Nicolò Chiapperini,2019-05-18,5,,/franco.gallisai?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622514758155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDn-SidoVQ47i90&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nicolò Chiapperini,Nicolò Chiapperini,2019-05-18,1,Franco Galisai 😍😍😍😍,/nicolo.chiapperini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622514758155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDn-SidoVQ47i90&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Franco Galisai,Nicolò Chiapperini,2019-05-18,4,Nicolò Chiapperini lo messa apposta per i ridicoli rosiconi che hanno pubblicato le foto dalle 9 di questa mattina ⚘⚘⚘🎉🎉🎉,/franco.gallisai?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622514758155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDn-SidoVQ47i90&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nicolò Chiapperini,Nicolò Chiapperini,2019-05-18,3,"Franco Galisai sono alla frutta , si stanno cagando addosso e ormai provano a infastidire con queste cretinate 😂",/nicolo.chiapperini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622514758155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDn-SidoVQ47i90&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimo Battaglia,Nicolò Chiapperini,2019-05-18,1,,/massimo.verdi.77770?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622514758155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDn-SidoVQ47i90&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nicolò Chiapperini,Nicolò Chiapperini,2019-05-18,,Massimo Battaglia che spettacolo ... “ hanno aperto gli ombrelli per riempire i buchi “ Cit. 😂😂😂😂😂😂,/nicolo.chiapperini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622514758155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDn-SidoVQ47i90&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimo Battaglia,Nicolò Chiapperini,2019-05-18,1,"Nicolò Chiapperini pensa nella foto presa dalla webcam che guarda il duomo, non si vede nemmeno il palco dove c'era più gente, sti 4 rosiconi non sanno che pesci prendere, di sicuro ne prenderanno tanti in faccia il 26 maggio 😉",/massimo.verdi.77770?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622514758155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDn-SidoVQ47i90&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio De Maria,Nicolò Chiapperini,2019-05-18,,Franco Galisai guarda che è la foto dell’anno scorso 😂😂😂 il palco è diverso.... 😂😂😂,/giorgio.demaria.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622514758155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDn-SidoVQ47i90&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosy Barlini,ROOT,2019-05-18,7,I 5 stelli a pulire i cessi .troppo forte davvero questa battuta !!!!!!!!,/profile.php?id=100004547535370&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366821247511318&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCJ-bElak5uGoLh&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosa Calabrese-Lubes,Rosy Barlini,2019-05-18,,Devi essere anche volgare oltre che sfigata..Non o vedete che è bravo solo a fare i selfi?Ma non preoccupatevi con un popolo cosi sicuramente mi auguro che avrete ciò che vi meritate..Il m5⭐é il governo del cambiamento..Lui fa solo Salvini Alba tutto ma dopo crollerà. ..Auguri a voi tutti leghisti di buon proseguimento peggio come stavate😵,/rosa.lubes.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366821247511318&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCJ-bElak5uGoLh&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,ROOT,2019-05-18,113,Emozionante e Commovente la diretta da MILANO!!💖💚 Fiera e orgogliosa di essere sempre stata Leghista con il 💚 e la Testa !! 👏👏👏💪💖,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523013155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAJwf2V8amgU8Gf&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianni Francesco Arduini,Emily Ronny,2019-05-18,1,Emily Ronny https://www.skylinewebcams.com/it/webcam/italia/lombardia/milano/duomo-milano.html,/giannifrancesco.arduini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523013155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAJwf2V8amgU8Gf&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosanna Gioacchini,Emily Ronny,2019-05-18,1,Gianni Francesco Arduini ahahahah se mettevi la foto di questa notte forse erano ancora di meno. Ciao rosicone,/rosanna.gioacchini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523013155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAJwf2V8amgU8Gf&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +RGiuseppe Cit,,2019-05-18,,Per un corretto servizio d'informazione dovete sintonizzarVI su ZDF -TSI - o altre emittenti non Italiane,/CGrgiuseppe?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=60&av=100013534782121&eav=AfYhUTcvGtMAS-0vcScCctxskUEAuHaAotDSgQE7HdJZiwuJ9tiVqoZiGiq9qnber2Y&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michele Scardigno,,2019-05-18,9,"Quando vorrei tornare a 50 anni fa ,quando le case erano con le porte aperte e stavamo sicuri che nessuno entrava",/michele.scardigno.14?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=60&av=100013534782121&eav=AfYhUTcvGtMAS-0vcScCctxskUEAuHaAotDSgQE7HdJZiwuJ9tiVqoZiGiq9qnber2Y&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Manuela Bonvini,,2019-05-18,8,Salvini.nemmeno la pioggia e la folla lo ferma..unico e speciale..🤗,/profile.php?id=100009706418258&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=60&av=100013534782121&eav=AfYhUTcvGtMAS-0vcScCctxskUEAuHaAotDSgQE7HdJZiwuJ9tiVqoZiGiq9qnber2Y&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,8,E tanti come me non sono potuti venire per lavoro o altro.. Siamo molti di più... ED il mondo ci guarda,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=60&av=100013534782121&eav=AfYhUTcvGtMAS-0vcScCctxskUEAuHaAotDSgQE7HdJZiwuJ9tiVqoZiGiq9qnber2Y&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Hila Tonin,,2019-05-18,8,Tutti devono prendere esempio da questa gente. Che educazione. SIAMO ITALIANI,/tonin.hila.71?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=60&av=100013534782121&eav=AfYhUTcvGtMAS-0vcScCctxskUEAuHaAotDSgQE7HdJZiwuJ9tiVqoZiGiq9qnber2Y&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Seline Calvi Hess,,2019-05-18,8,"Questa e’ l’Italia che mi piace 👏🏻👏🏻👏🏻 con il ministro degli interni che parla, in mezzo a loro,con il suo popolo.GRANDE MATTEO...Molla subito Gigino e AVANTI TUTTA...!!!!",/seline.sel.calvihess?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=60&av=100013534782121&eav=AfYhUTcvGtMAS-0vcScCctxskUEAuHaAotDSgQE7HdJZiwuJ9tiVqoZiGiq9qnber2Y&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michele Scardigno,,2019-05-18,8,Finalmente in Italia abbiamo un vero capitano.Avanti tutta grande Salvini,/michele.scardigno.14?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=60&av=100013534782121&eav=AfYhUTcvGtMAS-0vcScCctxskUEAuHaAotDSgQE7HdJZiwuJ9tiVqoZiGiq9qnber2Y&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alby Chef,ROOT,2019-05-18,103,Non mollare Matteo sei l'ultima speranza per sto paese,/kruger.querta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522728155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC2Gth7GxEJ75qg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ezio Mancuso,Alby Chef,2019-05-18,1,Alby Chef anche il sindaco di legnanoooooo 😉😂😂😂,/eziomit?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522728155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC2Gth7GxEJ75qg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alby Chef,Alby Chef,2019-05-18,,Ezio Mancuso pensa ai 160 indagati del PD....fenomeno....,/kruger.querta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522728155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC2Gth7GxEJ75qg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rossi Luca,Alby Chef,2019-05-18,,Alby Chef lo spero.... Ma credo che sia l'ennesimo bluf,/rossi.luca.35?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522728155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC2Gth7GxEJ75qg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pier Luigi Sfulcini,ROOT,2019-05-18,8,"Un Italiano che ama il suo popolo , mai visto un politico così amato .",/profile.php?id=100021328691096&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438423646718671&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDmCqMg2wDKO0TX&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Adriano Molteni,Pier Luigi Sfulcini,2019-05-18,1,"Mi spiace, ma Matteo ne terrà conto.",/adriano.molteni.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438423646718671&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDmCqMg2wDKO0TX&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Costa,ROOT,2019-05-18,64,Alla faccia di quelli che hanno messo gli striscioni sui balconi... hahaha 😂😂😂 ridicoli 😂😂😂😂 rosicate 😂😂😂😂,/profile.php?id=100009519992518&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538653155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAB4O7Q4i6F755V&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mariangela Sartorazzi,Paola Costa,2019-05-18,2,"Paola Costa Paola Costa, Bassetti fa i soldi con tutte quelle lenzuola...😂😂",/mariangela.sartorazzi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538653155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAB4O7Q4i6F755V&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elio Adriano Imperatore,Paola Costa,2019-05-18,,"Paola Costa La Dichiarazione universale dei diritti dell'uomo afferma all'articolo 18: «Ogni individuo ha il diritto alla libertà di pensiero, coscienza e di religione; tale diritto include la libertà di cambiare religione o credo, e la libertà di manifestare, isolatamente o in comune, sia in pubblico che in privato, la propria religione o il proprio credo [...]» La Costituzione della Repubblica Italiana, all'articolo 21, recita: «Tutti hanno diritto di manifestare liberamente il proprio pensiero con la parola, lo scritto e ogni altro mezzo di diffusione.» La Convenzione per la salvaguardia dei diritti dell'uomo e delle libertà fondamentali (firmata a Roma il 4 novembre 1950) recita all'art. 9: ""1. Ogni persona ha diritto alla libertà di pensiero, di coscienza e di religione: tale diritto include la libertà di cambiare di religione o di credo e la libertà di manifestare individualmente o collettivamente, sia in pubblico che in privato, mediante il culto, l'insegnamento, le pratiche e l'osservanza dei riti. 2. La libertà di manifestare la propria religione o il proprio credo può essere oggetto di quelle sole restrizioni che, stabilite per legge, costituiscono misure necessarie in una società democratica, per la protezione dell'ordine pubblico, della salute o della morale pubblica, o per la protezione dei diritti e della libertà altrui"". La libertà di pensiero (art.21) La libertà di manifestazione del pensiero è tra tutte le libertà civili, sicuramente la più importante ed espressiva perché interessa da un lato, la vita spirituale dell'uomo e il patrimonio, le idee di cui egli è portatore, dall'altro la sua partecipazione alla vita e al progresso del paese. La Costituzione della Comunità europea recita all'articolo II-70: «1. Ogni persona ha diritto alla libertà di pensiero, di coscienza e di religione. Tale diritto include la libertà di cambiare religione o convinzione, così come la libertà di manifestare la propria religione o la propria convinzione individualmente o collettivamente, in pubblico o in privato, mediante il culto, l'insegnamento, le pratiche e l'osservanza dei riti. 2. Il diritto all'obiezione di coscienza è riconosciuto secondo le leggi nazionali che ne disciplinano l'esercizio.»",/adriano.imperatore1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538653155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAB4O7Q4i6F755V&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loreta Cappelletto,Paola Costa,2019-05-18,,Di certo Li hanno pagati per metterli !!!,/loreta.cappelletto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538653155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAB4O7Q4i6F755V&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Costa,Paola Costa,2019-05-18,,Angela Anzalone e chi se ne frega?,/profile.php?id=100009519992518&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538653155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAB4O7Q4i6F755V&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Costa,Paola Costa,2019-05-18,,Elio Adriano Imperatore appunto e quindi? Sti cazzi,/profile.php?id=100009519992518&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538653155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAB4O7Q4i6F755V&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Costa,Paola Costa,2019-05-18,,Mariangela Sartorazzi 😂😂,/profile.php?id=100009519992518&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538653155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAB4O7Q4i6F755V&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Raffaella Santosuosso,Paola Costa,2019-05-18,,Elio Adriano Imperatore....predicate bene e razzolate male! La censura fatta alla Fiera del libro di Torino non ti dice nulla!!!! E allora di cosa stiamo parlando....Taci è meglio.,/raffaella.santosuosso?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538653155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAB4O7Q4i6F755V&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio De Maria,Paola Costa,2019-05-18,,Lui c’era!!😂😂😂,/giorgio.demaria.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538653155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAB4O7Q4i6F755V&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sonia Pannunzi,ROOT,2019-05-18,7,"La tua scorta siamo noi, personalmente darei la mia vita per salvare la tua 💚💚🇮🇹💚💚",/signorina.silvani.5494?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_391132551485116&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDWknump44YtPqn&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luigia Pietrosanti,Sonia Pannunzi,2019-05-18,1,,/luigia.pietrosanti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_391132551485116&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDWknump44YtPqn&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Angela Anzalone,Paola Costa,2019-05-18,,Paola Costa A FURIA DI ROSICARE TE MAGNANO,/profile.php?id=100013485762681&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538653155&p=10&count=12&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCLM7rLdqv60h-V +Graziella Muzzetta,Paola Costa,2019-05-18,1,Angela Anzalone non credo a furia di ROSICARE avrete bisogno del dentista 😂😂😂😂😂😂,/graziella.muzzetta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622538653155&p=10&count=12&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCLM7rLdqv60h-V +Rosella Deidda,,2019-05-18,132,Bravissimo complimenti Salvini,/rosella.deidda?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=10&av=100013534782121&eav=AfaBWIPIf8DS2CqsxQAzIlUXnoLfTY1RGML9jW-hDcmpHejphv2HwZ3n2f1Izu2c6Fs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +RGiuseppe Cit,ROOT,2019-05-18,9,pensate c'e' un cineoperatore che sta filmando il gruppetto dei PD idioti alle spalle delle forze dell'ordine ... fara' senz'altro un scoop anti Salvini stasera .. o forse su Propaganda a La7 ... roba da matti,/CGrgiuseppe?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366815407511902&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCp20BYh8hNnmBZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lavinia Biondi,RGiuseppe Cit,2019-05-18,,c'è già un post denigratoria sui partecipanti..li fa passare da ubriachi e da persone pagate per far numero...se ti interessa te lo invio in privato. È spregevole,/lavinia.biondi.16?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366815407511902&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCp20BYh8hNnmBZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimo Petani,,2019-05-18,8,Matteo manda in culo il bibitaro del S. Paolo e vai al governo con la Meloni! Basta 5 stelle!!!,/maxipeta?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=70&av=100013534782121&eav=AfbQXk5bKLjtDxA-QHl4BuA3kWBCPr3pOlOv-3iPTOUQl5PMf1ni4fUiI3LzTWTx7DQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Caterina Arculeo,,2019-05-18,8,Grande il nostro Ministro Matteo Salvini il politico che riesce a riempire le piazze da NORD a Sud D'Italia il Ministro che scende in mezzo alla gente.,/profile.php?id=100009042896589&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=70&av=100013534782121&eav=AfbQXk5bKLjtDxA-QHl4BuA3kWBCPr3pOlOv-3iPTOUQl5PMf1ni4fUiI3LzTWTx7DQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alice Rapaglià,,2019-05-18,8,GRANDE CAPITANO TRA POCO È L'ORA DELLA VERITÀ. IO VOTO LEGA,/alice.rapaglia.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=70&av=100013534782121&eav=AfbQXk5bKLjtDxA-QHl4BuA3kWBCPr3pOlOv-3iPTOUQl5PMf1ni4fUiI3LzTWTx7DQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,7,E pure gli africani.. Quelli per bene ed onesti.. Loro sono integrati..,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=70&av=100013534782121&eav=AfbQXk5bKLjtDxA-QHl4BuA3kWBCPr3pOlOv-3iPTOUQl5PMf1ni4fUiI3LzTWTx7DQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana LaRosa,,2019-05-18,7,Prepariamoci.....il 26 dobbiamo cancellare i rossi e la UE la deve finire di rompere i c........,/silvana.larosa.775?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=70&av=100013534782121&eav=AfbQXk5bKLjtDxA-QHl4BuA3kWBCPr3pOlOv-3iPTOUQl5PMf1ni4fUiI3LzTWTx7DQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigi Bergamo,,2019-05-18,7,"Un grazie a tutti i partecipanti che,ancora hanno dimostrato correttezza e democrazia (mariella)",/luigi.bergamo.568?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=70&av=100013534782121&eav=AfbQXk5bKLjtDxA-QHl4BuA3kWBCPr3pOlOv-3iPTOUQl5PMf1ni4fUiI3LzTWTx7DQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tommaso Fraioli,,2019-05-18,7,I mezzi di informazione hanno boicottando la manifestazione ma saremo ancora più forti! Grande Capitano viva la Lega e viva l’Italia!💪🏼🇮🇹🇮🇹🇮🇹🇮🇹,/tommaso.fraioli.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=70&av=100013534782121&eav=AfbQXk5bKLjtDxA-QHl4BuA3kWBCPr3pOlOv-3iPTOUQl5PMf1ni4fUiI3LzTWTx7DQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabio Pelucchi,ROOT,2019-05-18,101,"Domenica si scrive la leggenda.....!!In Europa...e in Italia liberiamoci dei 5 stelle,sono traditori filo PD...attenzione!!",/fabio.pelucchi.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512723155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiaKHlEOjTon8M&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuliano Martini,Fabio Pelucchi,2019-05-18,6,D altronde la maggior parte dei 5 stalle sono fuoriusciti della sinistra.,/giuliano.martini.79?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512723155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiaKHlEOjTon8M&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Angela Maria Bruno,Fabio Pelucchi,2019-05-18,5,"Fabio Pelucchi Non sono filo Pd ma proprio PD. M5Stelle=PD ........ ricordate il 2 giugno 2018 Roberto Fico alla sfilata ai Fori Imperiali salutava tutti con il pugno chiuso e poi mentre suonavano l’inno di Mameli invece che la mano sul cuore, si mise le MANI IN TASCA?Vergognoso ...... 🙋😜🙋",/angelamaria.bruno.35?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512723155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiaKHlEOjTon8M&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mely Mel,Fabio Pelucchi,2019-05-18,,Fabio Pelucchi Per non dimenticare..Qui tutti muti le zecche.,/vivien.ladegas?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512723155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiaKHlEOjTon8M&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maurizio Francesca Mangiaracina,Fabio Pelucchi,2019-05-18,1,Appunto... x non dimenticare,/mauro.francy?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512723155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDiaKHlEOjTon8M&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anto Anto,ROOT,2019-05-18,6,Sono appena passato )casualmente)... di solito in piazza Duomo c'è più gente.,/antonio.achille.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&count=17&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDVrQqJiVRAmgZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lidia Jeraquiti,Anto Anto,2019-05-18,,Hahaha,/lidia.jeraquiti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&count=17&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDVrQqJiVRAmgZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lorella Camolese,Anto Anto,2019-05-18,,Anto Anto ti brucia ehhh????,/lorella.camolese?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&count=17&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDVrQqJiVRAmgZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anto Anto,Anto Anto,2019-05-18,,Daniela Alfieri ti assicuro che ci vedo benissimo...,/antonio.achille.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&count=17&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDVrQqJiVRAmgZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anto Anto,Anto Anto,2019-05-18,1,Lorella Camolese per niente... certa gente mi è indifferente.,/antonio.achille.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&count=17&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDVrQqJiVRAmgZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anto Anto,Anto Anto,2019-05-18,1,Daniela Alfieri,/antonio.achille.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&count=17&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDVrQqJiVRAmgZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carmen Greco,Anto Anto,2019-05-18,1,"I fan del ministro dell'odio, hanno studiato tutti sullo stesso vocabolario. Usano indistintamente gli stessi vocaboli, perché incapaci di argomentare. ""E allora il pd?"" ""Rosiconi"" ""Zecca rossa"" ""malox"" Siete di una mediocrità sconvolgente.",/carmen.greco.520?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&count=17&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDVrQqJiVRAmgZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anto Anto,Anto Anto,2019-05-18,1,Carmen Greco monotoni,/antonio.achille.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&count=17&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDVrQqJiVRAmgZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carmen Greco,Anto Anto,2019-05-18,1,"Anto Anto, si. Non si rendono conto di quanto siano aridi dentro.",/carmen.greco.520?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&count=17&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDVrQqJiVRAmgZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marisa Ferrari,Anto Anto,2019-05-18,,Ipovedente? Sordità congenita? Forse comunista!!!😂😂,/marisa.ferrari.9028?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&count=17&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDVrQqJiVRAmgZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuliana Termenini,Anto Anto,2019-05-18,,Rosica😂😂😂😂😂😂,/giuliana.termenini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&count=17&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDVrQqJiVRAmgZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elena Pescù,ROOT,2019-05-18,57,Grande Matteo sei la nostra speranza non mollare!!!!,/elena.pescu.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523528155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCeD0s6kbjW7V4o&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniela Alfieri,Anto Anto,2019-05-18,3,metti gli occhiali..rosicone..😂😂,/daniela.alfieri.71?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDp0KAwUAqzrCwq +Kevin Quero,Anto Anto,2019-05-18,1,Stai zitto sinistroide La sinistra è finita W LA DESTRA W L' ITALIA,/kevin.quero.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDp0KAwUAqzrCwq +Sandra Chiricozzi,Anto Anto,2019-05-18,1,Il solito buffone rosicone.🤣,/sandra.chiricozzi.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDp0KAwUAqzrCwq +Marisa Di Nauta,Anto Anto,2019-05-18,2,Casualmente!?! Invidioso!!! E bugiardo👎,/marisa.dinauta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDp0KAwUAqzrCwq +Antonio Mazzaglia,Anto Anto,2019-05-18,,🤫🤡,/antonio.mazzaglia.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDp0KAwUAqzrCwq +Anna Guerrasio,Anto Anto,2019-05-18,,"Bravo a travisare l’evidenza, puoi essere un ottimo testimone ( falso 😉)",/anna.guerrasio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDp0KAwUAqzrCwq +Ettore Giuseppe Bottani,Anto Anto,2019-05-18,,Povero fan PD vai dall'oculista e dallo psichiatra!,/ettoregiuseppe.bottani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009543721114&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQDp0KAwUAqzrCwq +Elena Pescù,ROOT,2019-05-18,57,Grande Matteo sei la nostra speranza non mollare!!!!,/elena.pescu.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523528155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCeD0s6kbjW7V4o&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Cappellacci,ROOT,2019-05-18,7,Una politica fatta così non l’ho mai vista! Sei un GRANDE stai avvicinando a te e alla politica migliaia di giovani e a credere nella politica vera! 🙏🙏🙏👏👏👏👏💯🏆,/patrizia.cappellacci?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471011147054287&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD03Je5koePammO&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Patrizia Cappellacci,2019-05-18,,"una politica cialtrona,populista,demagogica,pericolosa",/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471011147054287&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD03Je5koePammO&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gabriella Pari,ROOT,2019-05-18,47,Ti ho seguito su fb..in tv nulla. 😡grande capitano..mantieni tutto ciò che dici,/profile.php?id=100000454366138&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622551133155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWG0Z7jg1fjMLj&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loredana Vecchio,Gabriella Pari,2019-05-18,2,Gabriella Pari no dai una volta tanto sky sul digiwall lo ha trasmesso tutto l'intervento di Salvini .... strano ma vero l'ho visto lì,/loredana.vecchio.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622551133155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWG0Z7jg1fjMLj&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gabriella Pari,Gabriella Pari,2019-05-18,3,Loredana Vecchio Meno male. .,/profile.php?id=100000454366138&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622551133155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWG0Z7jg1fjMLj&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alberto Atzeni,Gabriella Pari,2019-05-18,2,Gabriella Pari la rimetteranno la diretta su fb??? Perché io lavoro e me la sono persa...,/alberto.atzeni.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622551133155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWG0Z7jg1fjMLj&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gabriella Pari,Gabriella Pari,2019-05-18,1,Alberto Atzeni penso di si,/profile.php?id=100000454366138&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622551133155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWG0Z7jg1fjMLj&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Brigida Virgili,Gabriella Pari,2019-05-18,2,Alberto Atzeni si alle 21.,/profile.php?id=100009742724883&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622551133155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWG0Z7jg1fjMLj&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Cimino,Gabriella Pari,2019-05-18,3,penso troverai il video x intero su youtube tra non molto,/antonio.sanzx?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622551133155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWG0Z7jg1fjMLj&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Cimino,Gabriella Pari,2019-05-18,1,questo è il video,/antonio.sanzx?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622551133155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWG0Z7jg1fjMLj&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nicola Maggio,ROOT,2019-05-18,6,il ministro che non lavora e guadagna trentamila euro al mese e la gente ci sta dietro ma che bravi questi giovani italiani che credono a babbo natale alla loro eta,/nicola.maggio1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&count=20&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCXc4XOi6Tb14jj&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ania Aglie,Nicola Maggio,2019-05-18,1,Invece gli altri ministri lavorano ed anche gratis ? Ma fammi il piacere va,/luigi.nagliero?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&count=20&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCXc4XOi6Tb14jj&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Grazia Tomaselli,Nicola Maggio,2019-05-18,1,Rosica pure,/grazia.tomaselli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&count=20&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCXc4XOi6Tb14jj&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marco Martini,Nicola Maggio,2019-05-18,,Anche tu ci stai dietro in tutti i sensi,/marco.martini.1000?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&count=20&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCXc4XOi6Tb14jj&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Vera Capello,Nicola Maggio,2019-05-18,,Lui sta lavorando... e i tuoi?,/vera.capello.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&count=20&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCXc4XOi6Tb14jj&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolo Montanari,Nicola Maggio,2019-05-18,2,"Ma stai zitto, ve lo sognate un leader così, avete solo buffoni, svegliatevi😎😎",/paolo.montanari.3158?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&count=20&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCXc4XOi6Tb14jj&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Fabiano,Nicola Maggio,2019-05-18,,e sei intelligente tu ? Ma vai a zappare la terra !,/silvana.fabiano?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&count=20&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCXc4XOi6Tb14jj&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Fabiano,Nicola Maggio,2019-05-18,,"Perchè gli altri ministri degli interni guadagnavano meno , ma curati, che è meglio ! E' l'unico ministro che stà facendo bene per l'Italia e se non avesse la zavorra del bibitaro, potrebbe fare molto di più ! L'invidia è una brutta bestia !",/silvana.fabiano?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&count=20&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCXc4XOi6Tb14jj&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ivana Barbieri,Nicola Maggio,2019-05-18,,"Maggio... giusto il mese, sbagliata la testa🤣🤣🤣🤣",/ivana.barbieri.54?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&count=20&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCXc4XOi6Tb14jj&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolo Carozzi,Nicola Maggio,2019-05-18,,"Rosica solo quello ti rimane, fallito",/paolo.carozzi.121?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&count=20&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCXc4XOi6Tb14jj&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Desiree Paparella,Nicola Maggio,2019-05-18,3,Vai a prenderti il malox 😉😉,/piccoladesy?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&p=10&count=20&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQA2Y0ZKrEyvjSle +Alberto Destefano,Nicola Maggio,2019-05-18,1,Vai con le zecche,/alberto.destefano.39?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&p=10&count=20&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQA2Y0ZKrEyvjSle +Grazia Tomaselli,Nicola Maggio,2019-05-18,1,Perche’ di maio lavora?,/grazia.tomaselli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&p=10&count=20&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQA2Y0ZKrEyvjSle +Wing Chun,Nicola Maggio,2019-05-18,,Per quello che fa è impagabile secondo me o non ce la farei,/wing.chun.543908?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&p=10&count=20&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQA2Y0ZKrEyvjSle +Ugo Frediani,Nicola Maggio,2019-05-18,,Certo . Perché finora a cosa hanno creduto?,/ugo.frediani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&p=10&count=20&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQA2Y0ZKrEyvjSle +Paolo Baltieri,Nicola Maggio,2019-05-18,,Cosa vuoi mai..... stando vicino al pd si sarà contaggiato,/profile.php?id=100011392558215&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&p=10&count=20&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQA2Y0ZKrEyvjSle +Monica Morelli,Nicola Maggio,2019-05-18,,"Meglio a Babbo Natale , che è eterno che alla mafia : essa non sarà eterna!",/monica.morelli.3133?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&p=10&count=20&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQA2Y0ZKrEyvjSle +Silvio Ale,Nicola Maggio,2019-05-18,,"Rosichi vero? ...lavorassi tu come lui, con amore per ciò che fa...",/silvio.ale.58?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874684911069&p=10&count=20&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQA2Y0ZKrEyvjSle +Manlio Cosseddu,ROOT,2019-05-18,67,E i comunisti PD e 5stelle CREPANO.,/manlio.cosseddu?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509893155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDuWdCo1Cg3i8uF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniele Russo,Manlio Cosseddu,2019-05-18,2,Manlio Cosseddu quando il capitano fa goal avvisa,/Ryoga90?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509893155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDuWdCo1Cg3i8uF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Agnese Ciocci,Manlio Cosseddu,2019-05-18,4,Manlio Cosseddu lasciamoli crepare è quello che meritano,/agnese.ciocci?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509893155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDuWdCo1Cg3i8uF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Marangi,Manlio Cosseddu,2019-05-18,3,"Non mi importa dei partiti(tanto ci guadagneranno sempre più di noi), ma secondo me voi non avete idea di quale sia il vero comunismo. Forse dovreste riprendere un po' i libri di storia prima di usare termini così pesanti",/peppons46?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509893155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDuWdCo1Cg3i8uF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alessandro Luperdi,Manlio Cosseddu,2019-05-18,6,Dovete ringraziare il M5S se avete avuto questa temporanea notorietà.Tranquillo se rompete tornate al 4 %.,/alessandro.luperdi.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509893155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDuWdCo1Cg3i8uF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Piticchio,Manlio Cosseddu,2019-05-18,1,"Giuseppe Marangi sono d'accordo , hai lo stesso pensiero x chi dice fascista??",/profile.php?id=100008645130048&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509893155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDuWdCo1Cg3i8uF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ilaria Argiolas,Manlio Cosseddu,2019-05-18,,Agnese Ciocci mi raccomando domani vai a confessarti in chiesa eh! Che bella personcina caritatevole..se avessi una nonna cattiva come te cambierei famiglia.,/ilaria.argiolas.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509893155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDuWdCo1Cg3i8uF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sara Antonella Casacci,Manlio Cosseddu,2019-05-18,,Alessandro Luperdi tu sogni :) bacioni!!!,/jolandalacorsara?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509893155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDuWdCo1Cg3i8uF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cristina Ornello,Manlio Cosseddu,2019-05-18,,"Alessandro Luperdi infatti chi fa la corte al PD è il M5s,non la Lega.",/cristina.ornello?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509893155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDuWdCo1Cg3i8uF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Marangi,Manlio Cosseddu,2019-05-18,,Dipende di quale contesto si parla Giuseppe Piticchio.,/peppons46?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509893155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDuWdCo1Cg3i8uF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Piticchio,Manlio Cosseddu,2019-05-18,,"Giuseppe Marangi beh mi sembra chiaro, il contesto l'hai espresso tu... chi dice oggi comunista non sapendo cos'è il comunismo. Vale anche per chi dice fascista, nn sapendo che cos'era il fascismo?",/profile.php?id=100008645130048&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622509893155&count=10&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDuWdCo1Cg3i8uF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Irene Pifferi,ROOT,2019-05-18,6,"un bravo MINISTRO deve stare in mezzo popolo x vedere i problemi e gli impiegati in uffici ,grande Matteo",/irene.pifferi.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407404676768375&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDW5pvigOvFVMIN&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Roberto Spedale,ROOT,2019-05-18,35,Povero il bibitaro rimane male a vedere questa piazza.,/roberto.spedale.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522393155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBp-ShcTS5GHJrZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosa Glorioso Cerrito,Roberto Spedale,2019-05-18,1,Roberto Spedale spero che scompaia alle europee e dalla scena italiana,/rosa.gloriosocerrito?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522393155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBp-ShcTS5GHJrZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisabetta Ripamonti,Roberto Spedale,2019-05-18,1,"Roberto Spedale io ci sono e mi dispiace contraddirla,ma siamo tanti nonostante la pioggia",/elisabetta.ripamonti3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522393155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBp-ShcTS5GHJrZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosa Arienzo,Roberto Spedale,2019-05-18,1,Elisabetta Ripamonti lui ha detto la stessa cosa !!,/rosa.arienzo.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522393155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBp-ShcTS5GHJrZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marco Ghiglia,Roberto Spedale,2019-05-18,1,Roberto Spedale c era anche lui 😂😂😂,/marco.ghiglia.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522393155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBp-ShcTS5GHJrZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosa Arienzo,Roberto Spedale,2019-05-18,,Marco Ghiglia al posto che gli compete !!,/rosa.arienzo.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522393155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBp-ShcTS5GHJrZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisabetta Ripamonti,Roberto Spedale,2019-05-18,,Rosa Arienzo ho sbagliato ..mi scuso.. ho risposto alla persona sbagliata!,/elisabetta.ripamonti3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522393155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBp-ShcTS5GHJrZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosa Arienzo,Roberto Spedale,2019-05-18,,Elisabetta Ripamonti non c'e'mica problema ..ciao.❤,/rosa.arienzo.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522393155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBp-ShcTS5GHJrZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisabetta Dei DazianoTagliabue,,2019-05-18,7,"Non c’è bibitaro che tenga.. il leader è solo lui, il nostro Capitano 💚💚💚💚",/elisabetta.tagliabue.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=80&av=100013534782121&eav=AfbAvKgV4n0-A5EO97_L9UASE5wZb7MeUheD_atilT2JaCVWKQuuBlgPWvofyL42TyQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Bellisari,,2019-05-18,7,Tutti a votare domenica mi raccomando!!! Non c’è sole o bella giornata che tenga mi raccomando nn manchiamo a questo appuntamento tutti compatti x il capitano💪🇮🇹#votolega,/roberto.bellisari?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=80&av=100013534782121&eav=AfbAvKgV4n0-A5EO97_L9UASE5wZb7MeUheD_atilT2JaCVWKQuuBlgPWvofyL42TyQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gas Paroli,,2019-05-18,7,Matteo Salvini per lo sforzo profuso a favore dell’Italia merita di vincere le elezioni e diventare presidente del consiglio,/gas.paroli.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=80&av=100013534782121&eav=AfbAvKgV4n0-A5EO97_L9UASE5wZb7MeUheD_atilT2JaCVWKQuuBlgPWvofyL42TyQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Clara Capanni,,2019-05-18,6,"Matteo, orgogliosa di avere la tua firma sulla mia nuova carta di identità. ❤️",/clara.capanni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=80&av=100013534782121&eav=AfbAvKgV4n0-A5EO97_L9UASE5wZb7MeUheD_atilT2JaCVWKQuuBlgPWvofyL42TyQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Margot Panco,,2019-05-18,6,"Rosiconi dove siete povero fegato, mi sa che tra un po fate un trapianto",/margot.panco.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=80&av=100013534782121&eav=AfbAvKgV4n0-A5EO97_L9UASE5wZb7MeUheD_atilT2JaCVWKQuuBlgPWvofyL42TyQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Limpetti,,2019-05-18,6,Sono felice di poterti vedere in diretta sei amato da 80 per 100 degli italiani vedrai .. vincerai!!!!!!♥️♥️♥️,/paola.limpetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=80&av=100013534782121&eav=AfbAvKgV4n0-A5EO97_L9UASE5wZb7MeUheD_atilT2JaCVWKQuuBlgPWvofyL42TyQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Raimondi,ROOT,2019-05-18,39,domenica prossima scriviamo la storia! Cambiamo l'europa! #CHANGEEUROPE💪💚,/maurizio.raimondi.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622534253155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCW_x2gEn2cUSxh&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mariolina Schizzo,Maurizio Raimondi,2019-05-18,,Maurizio Raimondi dobbiamo solo fare attenzione allo spoglio dei voti. Ci sono mani troppi lunghe.,/mariolina.mariolina.90?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622534253155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCW_x2gEn2cUSxh&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maurizio Raimondi,Maurizio Raimondi,2019-05-18,,"Mariolina Schizzo credo si rifaranno i rappresentanti di lista,che sono importanti",/maurizio.raimondi.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622534253155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCW_x2gEn2cUSxh&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ilaria Argiolas,Maurizio Raimondi,2019-05-18,,Maurizio Raimondi che tenerezza che mi fate...❤ un bel libro di diritto dell'unione europea per farvi tornare tutti alla realtà.,/ilaria.argiolas.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622534253155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCW_x2gEn2cUSxh&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maurizio Raimondi,Maurizio Raimondi,2019-05-18,,Ilaria Argiolas eh già..noi siamo quello che non capiamo e non sappiamo mai niente..i migliori siete voi😂😂😂 bacioni😘,/maurizio.raimondi.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622534253155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCW_x2gEn2cUSxh&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rossella Bene,Maurizio Raimondi,2019-05-18,1,"Ilaria Argiolas e per non farle tenerezza dovremmo votare chi vorrebbe lei? Ci dica, chi dovremmo votare?",/rossella.decinti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622534253155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCW_x2gEn2cUSxh&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Laura Maggiolo,ROOT,2019-05-18,6,Una persona semplice che sta in ezzo ala gente forza MATTEO sei tutti noi 💚💚💚💚💚💚💚💚💚🌷🌷,/laura.maggiolo.161?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_338295006857052&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDMLGxL9TdL-RQF&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Laura Maggiolo,2019-05-18,,ahahahahaha ma fatti curare,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_338295006857052&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDMLGxL9TdL-RQF&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Cescatti,ROOT,2019-05-18,39,E milioni di italiani ti seguivano in tv ...... Grande matteo,/andrea.cescatti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523513155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC99hIyrF0odm7D&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ilaria Argiolas,Andrea Cescatti,2019-05-18,,Andrea Cescatti si? Lavori all'Auditel?,/ilaria.argiolas.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523513155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC99hIyrF0odm7D&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Cescatti,Andrea Cescatti,2019-05-18,1,Ilaria Argiolas svegliati che il letargo è finito !!!!!!,/andrea.cescatti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523513155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC99hIyrF0odm7D&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Catia Citti,ROOT,2019-05-18,6,Ma i piddini evitassero di venire a commentare visto che noi non andiamo nelle loro pagine,/catia.citti.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_155845412128349&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBNI7p5DpuNYbrp&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolo Carozzi,Catia Citti,2019-05-18,1,"Gran brutta cosa l 'invidia,tipica qualità dei falliti tale quale loro sono,non badarci lasciali schiattare.",/paolo.carozzi.121?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_155845412128349&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBNI7p5DpuNYbrp&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Catia Citti,Catia Citti,2019-05-18,,Paolo Carozzi giusto😁,/catia.citti.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_155845412128349&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBNI7p5DpuNYbrp&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Coffer,,2019-05-18,52,Leghista da sempre...un motivo in più per votare lega alle europee,/agriturismo.lecinciallegre?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=20&av=100013534782121&eav=Afa1b79g-3pvIVVT9EIwnSDI3rWdDYsHnwE-fJ8uDEa-vF2XJC5nd7ToqLmfKSyzv3g&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Davide Ross,,2019-05-18,38,"orgoglioso di essere italiano ma soprattutto di essere rappresentato in europa da te capitano!!! voto per la lega per il cambiamento, non solo in italia ma in europa!!!",/david.rollins.5055?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=20&av=100013534782121&eav=Afa1b79g-3pvIVVT9EIwnSDI3rWdDYsHnwE-fJ8uDEa-vF2XJC5nd7ToqLmfKSyzv3g&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Esposito Corsini,ROOT,2019-05-18,6,Tu sei il più grandeeeee!!! Non dimenticarto mai del sud! Mi raccomando. Spazza via i delinquenti!!! 😘,/annaespositocorsini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425865521578652&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC__ytRssXE-GM6&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Anna Esposito Corsini,2019-05-18,,il piú grande ipocrita e falsone,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425865521578652&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQC__ytRssXE-GM6&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cristina Mancini,ROOT,2019-05-18,48,Bellissima manifestazione !! Niente vandalismo come di solito a quella dei rossi succede 😁🤨,/khellyf?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516603155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAHrm4rqSPUyrR8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianni Francesco Arduini,Cristina Mancini,2019-05-18,,Cristina Mancini https://www.skylinewebcams.com/it/webcam/italia/lombardia/milano/duomo-milano.html,/giannifrancesco.arduini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516603155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAHrm4rqSPUyrR8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Bruna Canu,ROOT,2019-05-18,5,Attento salvini x te si annuciano giorni duri .viva m 5 stelle ! Onestaaaaaa !!!,/bruna.cannu?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438419993385703&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA9eDS8LTyVwBtE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosi Dalla Porta,Bruna Canu,2019-05-18,,Lui non ha paura del diavolo Giggino che è disperato poveretto,/rossi.dallaporta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438419993385703&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA9eDS8LTyVwBtE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luisa Favini,Bruna Canu,2019-05-18,1,Bruna Canu ma dove vuole che vadano i 5stelle......,/luisa.favini.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438419993385703&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA9eDS8LTyVwBtE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolo Galli,Bruna Canu,2019-05-18,,Rosicona!,/paolo.galli.94?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438419993385703&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA9eDS8LTyVwBtE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosetta Scorzo,ROOT,2019-05-18,54,"Si vedeva anche dalla diretta, una marea! 👏👏👏👏",/rosetta.scorzo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622532398155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAzUPtpftRUbsDx&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianni Francesco Arduini,Rosetta Scorzo,2019-05-18,,Rosetta Scorzo https://www.skylinewebcams.com/it/webcam/italia/lombardia/milano/duomo-milano.html,/giannifrancesco.arduini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622532398155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAzUPtpftRUbsDx&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cristina Ornello,Rosetta Scorzo,2019-05-18,1,"Gianni Francesco Arduini guardati il video in diretta invece di postare queste scemenze!!!!Non ammettere la verità è un po' da poverini,non credi?",/cristina.ornello?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622532398155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAzUPtpftRUbsDx&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosetta Scorzo,Rosetta Scorzo,2019-05-18,1,"Cristina Ornello brava, ma nn meritano risposte... Basta guardare la realtà 😉",/rosetta.scorzo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622532398155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAzUPtpftRUbsDx&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvia Aldini,ROOT,2019-05-18,6,Qualcuno ha un sondaggio recente di straforo? A quanto è la Lega????!!,/silvia.aldini.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366815580845218&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBRQ1Ql1tnjq8yh&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Parri,Silvia Aldini,2019-05-18,1,per me potrebbe essere almeno al 100% magari che andiamo via soli.,/silvana.parri?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366815580845218&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBRQ1Ql1tnjq8yh&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gio Piscopo,Silvia Aldini,2019-05-18,,"gli ultimi sondaggi parlano di 90% lega e 10% fratelli d'italia dicono che sono dati da prendere con le pinze e che possono spostarsi di un 0,01 a un 0,02%",/gio.piscopo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366815580845218&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBRQ1Ql1tnjq8yh&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fabrizio Ghergo,ROOT,2019-05-18,23,E dall altra parte quattro coglioni sinistri a contromanifestare😂😂..fan tenerezza e compassione poracci,/fabrizio.ghergo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622524668155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBmdZ1uV3VRXEwT&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniela Sonaglia,Fabrizio Ghergo,2019-05-18,1,Fabrizio Ghergo quelli erano proprio quattro,/daniela.sonaglia.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622524668155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBmdZ1uV3VRXEwT&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucia Mannanici Aiello,Fabrizio Ghergo,2019-05-18,,"Fabrizio Ghergo lasciali fare, si ridicolizzano da soli e anoi va bene",/luciamannaniciaiello?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622524668155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBmdZ1uV3VRXEwT&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alessandra Cini,,2019-05-18,6,"Che belli questi giovani, garantiscono un futuro alle tue buone intenzioni 💚🇮🇹❤️",/alessandra.cini.10?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=90&av=100013534782121&eav=AfadwqwWK4q-OLSP8B4UA-ImWzTZfZeOzhrpOh-gUe90zE92lNUvAgj0eY5a8x164mU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ezio Scipione,,2019-05-18,4,Non hanno nemmeno il coraggio di far vedere la piazza di Calenda,/ezio.scipione.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=90&av=100013534782121&eav=AfadwqwWK4q-OLSP8B4UA-ImWzTZfZeOzhrpOh-gUe90zE92lNUvAgj0eY5a8x164mU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +RGiuseppe Cit,,2019-05-18,6,io non ho potuto farlo ma speriamo che qualcuno abbia immortalata tutta la piazza dall'alto ... e poi sempre qualcuno la mandi a Zingaretti .... e Company,/CGrgiuseppe?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=90&av=100013534782121&eav=AfadwqwWK4q-OLSP8B4UA-ImWzTZfZeOzhrpOh-gUe90zE92lNUvAgj0eY5a8x164mU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefano Schiaramazzi,,2019-05-18,6,"Attenzione, immagini forti. Se ne sconsiglia la visione ad un pubblico impressionabile di sinistra. Vietato ai minori di...di...minori e basta😌",/stefano.schiaramazzi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=90&av=100013534782121&eav=AfadwqwWK4q-OLSP8B4UA-ImWzTZfZeOzhrpOh-gUe90zE92lNUvAgj0eY5a8x164mU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vito Alfredo Fazio,,2019-05-18,6,"Non fare sbarcare più nessuno , sei l'unico rimasto a difendere i confini",/vitoalfredo.fazio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=90&av=100013534782121&eav=AfadwqwWK4q-OLSP8B4UA-ImWzTZfZeOzhrpOh-gUe90zE92lNUvAgj0eY5a8x164mU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Renato Griggio,ROOT,2019-05-18,100,AVANTI TUTTA contro questa EUROPA dei Burocrati 👍👍,/profile.php?id=100007149164886&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512878155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3JMiH0YX55Om&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luigi Parodi,Renato Griggio,2019-05-18,,Sembri uno dei provini del grande fratello,/luigi.parodi.927?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512878155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3JMiH0YX55Om&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lorena Bini,Renato Griggio,2019-05-18,5,Luigi ha parlato il comunista dichiarato con tanto di bandiera 👎,/Loryloren?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512878155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3JMiH0YX55Om&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Michele Tiengo,Renato Griggio,2019-05-18,1,,/michele.tiengo.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512878155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3JMiH0YX55Om&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elide Belingheri,Renato Griggio,2019-05-18,1,"Luigi Parodi xte e Compagni è in viaggio questo carico,dopo il 26 vi Servirà...😂😂😂😂😂😂😂😂😂😂😂😂😂😂",/elide.belingheri?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512878155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3JMiH0YX55Om&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ivan Ferro,Renato Griggio,2019-05-18,1,"Luigi Parodi Tu invece, oggi, il provino di COMUNISTA ESTINTO lo hai passato !!!",/ivan.ferro.5811?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512878155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3JMiH0YX55Om&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marisa Parenzan,Renato Griggio,2019-05-18,1,ecco quello che hai nella testa rosicone Patodi Luigii scusa ho storpiato il nome...Parodi luigi,/marisa.parenzan?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512878155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3JMiH0YX55Om&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Renato Griggio,Renato Griggio,2019-05-18,1,,/profile.php?id=100007149164886&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512878155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBY3JMiH0YX55Om&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Davide Di Imma,ROOT,2019-05-18,6,Il nemico si nasconde anche in casa e si chiama forza Italia,/davide.natale.395?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411733658849703&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDMWf3Ii1v6HvGR&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marisa Di Nauta,,2019-05-18,6,"Viva la famiglia, la sicurezza, la libertà di sentirsi orgogliosamente italiano. Non più il popolino da strizzare che ha costruito il PD quella massa di inetti, incapaci.",/marisa.dinauta?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=100&av=100013534782121&eav=AfbROBd1xYqrHg95A-ef-oTIcm69kyyIlT1h-1Sq9uq54--ltlb9yGovaJUm5GfnD4E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tommaso Fraioli,,2019-05-18,6,Questa è l’Italia che vogliono gli italiani!💪🏼💪🏼🇮🇹🇮🇹🇮🇹forza Capitano!,/tommaso.fraioli.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=100&av=100013534782121&eav=AfbROBd1xYqrHg95A-ef-oTIcm69kyyIlT1h-1Sq9uq54--ltlb9yGovaJUm5GfnD4E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cataldina Tibaldeschi Filonardi,,2019-05-18,6,"Tg H24 non una parola buona per la manifestazione,.neanche di quanta gente c era. Nn hanno rispetto per il popolo e non danno le informazioni giuste. Cambiamo l Italia e l Europa",/cataldinatibaldeschi.filonardi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=100&av=100013534782121&eav=AfbROBd1xYqrHg95A-ef-oTIcm69kyyIlT1h-1Sq9uq54--ltlb9yGovaJUm5GfnD4E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaele Perri,,2019-05-18,6,Grazie a te che stai ridando una speranza a questa ITALIA massacrata da una sinistra infame e corrotta,/raffaele.perri.908?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=100&av=100013534782121&eav=AfbROBd1xYqrHg95A-ef-oTIcm69kyyIlT1h-1Sq9uq54--ltlb9yGovaJUm5GfnD4E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Grazia Pascoletti,,2019-05-18,6,Il nostro Capitano oltre ad eseere un grande è un figo pazzesco!,/mariagrazia.pascoletti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=100&av=100013534782121&eav=AfbROBd1xYqrHg95A-ef-oTIcm69kyyIlT1h-1Sq9uq54--ltlb9yGovaJUm5GfnD4E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Fabiano,,2019-05-18,6,"SEi Grande ! Sentissi il nostro di cuore come batte , ogni volta che ti vediamo ! ❤️",/silvana.fabiano?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=100&av=100013534782121&eav=AfbROBd1xYqrHg95A-ef-oTIcm69kyyIlT1h-1Sq9uq54--ltlb9yGovaJUm5GfnD4E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Donatella Maggiolo,,2019-05-18,6,Sicura che rimani nella storia!!! Ne uscirai con la vittoria in mano! Unico fra il popolo. 😍😍😍,/donatella.maggiolo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=100&av=100013534782121&eav=AfbROBd1xYqrHg95A-ef-oTIcm69kyyIlT1h-1Sq9uq54--ltlb9yGovaJUm5GfnD4E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandra Sanguineti,,2019-05-18,6,"STASERA I PIDIOTI SI MANGERANNO FEGATO, BUDELLE E STOMACO....SAI CHE RABBIA POVERI SFIGATI",/alessandra.sanguineti.14?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=100&av=100013534782121&eav=AfbROBd1xYqrHg95A-ef-oTIcm69kyyIlT1h-1Sq9uq54--ltlb9yGovaJUm5GfnD4E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Massimo Grossoni,,2019-05-18,6,cerca di prevenire il gesto di qualche folle che attenta alla tua persona sei il nostro Futuro,/massimo.grossoni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=100&av=100013534782121&eav=AfbROBd1xYqrHg95A-ef-oTIcm69kyyIlT1h-1Sq9uq54--ltlb9yGovaJUm5GfnD4E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liliana Fiorentino,ROOT,2019-05-18,44,E meno male che hanno scritto che c'era poca gente 🤦‍♀️🤦‍♀️🤦‍♀️,/liliana.fiorentino.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&count=18&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHWdaoL1-2kjtn&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maurizia Gazzaniga,Liliana Fiorentino,2019-05-18,3,Matteo Casiraghi,/maurizia.gazzaniga?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&count=18&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHWdaoL1-2kjtn&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Brigida Virgili,Liliana Fiorentino,2019-05-18,4,Liliana Fiorentino pensa che anche le vie laterali erano strapieni. Una vera marea umana.,/profile.php?id=100009742724883&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&count=18&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHWdaoL1-2kjtn&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianni Francesco Arduini,Liliana Fiorentino,2019-05-18,1,Liliana Fiorentino https://www.skylinewebcams.com/it/webcam/italia/lombardia/milano/duomo-milano.html,/giannifrancesco.arduini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&count=18&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHWdaoL1-2kjtn&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sandra Piperno,Liliana Fiorentino,2019-05-18,4,,/profile.php?id=100010598678767&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&count=18&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHWdaoL1-2kjtn&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sandra Piperno,Liliana Fiorentino,2019-05-18,1,Questa rende di piu,/profile.php?id=100010598678767&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&count=18&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHWdaoL1-2kjtn&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniela Inglese,Liliana Fiorentino,2019-05-18,2,Che orgoglio,/daniela.inglese.74?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&count=18&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHWdaoL1-2kjtn&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianni Francesco Arduini,Liliana Fiorentino,2019-05-18,,Sandra Piperno e perchè la diretta della webcam non riporta una tale mole di gente?,/giannifrancesco.arduini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&count=18&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHWdaoL1-2kjtn&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucia Mannanici Aiello,Liliana Fiorentino,2019-05-18,2,Ma questi che si arrampicano sugli specchi postando foto di ore prima non si rendono conto di essere ridicoli????? Io c'ero e la piazza era pienissima.,/luciamannaniciaiello?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&count=18&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHWdaoL1-2kjtn&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucia Mannanici Aiello,Liliana Fiorentino,2019-05-18,1,Sandra Piperno credo che non servano commenti 😍,/luciamannaniciaiello?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&count=18&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHWdaoL1-2kjtn&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cristina Ornello,Liliana Fiorentino,2019-05-18,,Matteo Casiraghi fatra all'inizio quando stavano ancora manifestando per le strade?Guardati il video che non è una foto.,/cristina.ornello?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&count=18&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHWdaoL1-2kjtn&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matteo Casiraghi,Liliana Fiorentino,2019-05-18,1,Liliana Fiorentino basta una foto schiacciata in panoramica.,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&p=10&count=18&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQByi-ijhbOI8fFY +Giuseppe Baré,Liliana Fiorentino,2019-05-18,3,"Liliana Fiorentino si e' vero c'era poca gente, si ma nei loro cortei di protesta, si sono dimenticati di scriverlo. Magari dopo Salvini, usciranno dalle tane a fare casino come solitamente fanno.",/profile.php?id=100007301027043&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&p=10&count=18&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQByi-ijhbOI8fFY +Alessandro Colombo,Liliana Fiorentino,2019-05-18,12,Matteo Casiraghi foto fatta da quello sfigato di majorino ore prima dell'arrivo del corteo ... dai tornate a rosicare su,/alessandro.colombo.1899?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&p=10&count=18&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQByi-ijhbOI8fFY +Laura Machieraldo,Liliana Fiorentino,2019-05-18,14,"Matteo Casiraghi certo, peccato che fosse un paio d’ore prima dell’inizio ...",/laura.machieraldo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&p=10&count=18&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQByi-ijhbOI8fFY +Valeria Demuro,Liliana Fiorentino,2019-05-18,2,È evidente che le persone qui stavano arrivando.,/valeria.demuro.16?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&p=10&count=18&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQByi-ijhbOI8fFY +Rosa Arienzo,Liliana Fiorentino,2019-05-18,,Ma gli rispondete pure ???,/rosa.arienzo.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&p=10&count=18&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQByi-ijhbOI8fFY +Laura Machieraldo,Liliana Fiorentino,2019-05-18,2,Matteo Casiraghi ce l’hai un PC? Non penso perché altrimenti avresti guardato in diretta l’evento e ti saresti accorto da solo di che cazzata tu abbia scritto e che la foto da te pubblicata non corrisponda in alcun modo alla realtà 😘,/laura.machieraldo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520908155&p=10&count=18&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQByi-ijhbOI8fFY +Marcella Bonacchi,ROOT,2019-05-18,5,Voglio proprio vedere come faranno a taroccare tutto questo.. Nei tg di partito..,/marcella.bonacchi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366824634177646&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAHWElFqme5tj90&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tomaso Muroni,Marcella Bonacchi,2019-05-18,,Ed i magistrati rossi cosa ci stanno a fare?,/tomaso.muroni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366824634177646&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAHWElFqme5tj90&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Antonio Pazzaglia,Marcella Bonacchi,2019-05-18,,ci riescono lo stesso sono dei bugiardi maledetti,/antonio.pazzaglia.71?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366824634177646&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAHWElFqme5tj90&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matteo Barbieri,ROOT,2019-05-18,24,Dedicato ai comunisti rosiconi che parlavano di piazza vuota...😂,/profile.php?id=100004616205777&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512608155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBQ1Roc79Ow_Vae&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elio Adriano Imperatore,Matteo Barbieri,2019-05-18,,Matteo Barbieri io c’ero. E sono comunista: e la piazza non era come la nostra. Credimi,/adriano.imperatore1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512608155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBQ1Roc79Ow_Vae&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cristina Ornello,Matteo Barbieri,2019-05-18,,Elio Adriano Imperatore ma quando????Dove???,/cristina.ornello?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512608155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBQ1Roc79Ow_Vae&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Michaela Lav,ROOT,2019-05-18,5,Salvini non molli. A sinistra c’è tanta cattiveria e ipocrisia!! Andiamo avanti!!,/michaela.lav?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411753752181027&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDpMNfheA3jdHTY&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giampaolo Francini,Michaela Lav,2019-05-18,1,A sinistra e al Vaticano si rema contro gli italiani questa è la realtà,/giampaolo.francini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411753752181027&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDpMNfheA3jdHTY&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Dalia Bianca,,2019-05-18,6,"TIENUI DURO, stanno facendo di tt x farti cadere. Stai fermando i loro sporchi interessi ,!",/dalia.bianca.125?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=110&av=100013534782121&eav=AfZjAcP5lVEL7D4qIp1w-Rl108ZWajAqcECVaIZata-QudnP6b11W2t3eyEZOHXxkZk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Manuela Bonvini,,2019-05-18,5,Matteo..l'orgoglio sopratutto dei suoi figli. Quando saranno adulti potranno raccontare lo stravolgimento in meglio dell'Italia fatto Dal proprio padre..sarà l'uomo che ha fatto la storia,/profile.php?id=100009706418258&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=110&av=100013534782121&eav=AfZjAcP5lVEL7D4qIp1w-Rl108ZWajAqcECVaIZata-QudnP6b11W2t3eyEZOHXxkZk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorella Camolese,,2019-05-18,5,Ragazzi .. .e che pioveva! Se c'era il sole avrebbe fatto il botto! Grande!,/lorella.camolese?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=110&av=100013534782121&eav=AfZjAcP5lVEL7D4qIp1w-Rl108ZWajAqcECVaIZata-QudnP6b11W2t3eyEZOHXxkZk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loreta Prenz,,2019-05-18,5,"Voglio proprio vedere come faranno a censurare e fare finta di nulla ,,,",/loreta.prenz?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=110&av=100013534782121&eav=AfZjAcP5lVEL7D4qIp1w-Rl108ZWajAqcECVaIZata-QudnP6b11W2t3eyEZOHXxkZk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ottavio Natati,,2019-05-18,5,"NONOSTANTE LE TOGHE ROSSE E GLI SQUADRISTI COMUNISTI, VEDO UN MARE DI PERSONE",/ottavio.natati.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=110&av=100013534782121&eav=AfZjAcP5lVEL7D4qIp1w-Rl108ZWajAqcECVaIZata-QudnP6b11W2t3eyEZOHXxkZk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ottavio Natati,,2019-05-18,5,"ADESSO I GRILLO -MERDINI DIRANNO CHE LA PIAZZA ERA VUOTA, CHE LA LEGA E' IN DIFICOLTA'",/ottavio.natati.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=110&av=100013534782121&eav=AfZjAcP5lVEL7D4qIp1w-Rl108ZWajAqcECVaIZata-QudnP6b11W2t3eyEZOHXxkZk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Adriana Rosa,,2019-05-18,5,Sono proprio contenta una piazza piena di amici così non si era mai vista!,/adriana.rosa.14?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=110&av=100013534782121&eav=AfZjAcP5lVEL7D4qIp1w-Rl108ZWajAqcECVaIZata-QudnP6b11W2t3eyEZOHXxkZk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Remo Botta,,2019-05-18,5,"TRA LA GENTE, NON A DORMIRE SUI BANCHI DI MONTECITORIO!",/remo.botta?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=110&av=100013534782121&eav=AfZjAcP5lVEL7D4qIp1w-Rl108ZWajAqcECVaIZata-QudnP6b11W2t3eyEZOHXxkZk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Casari Roberto,ROOT,2019-05-18,39,C'è più gente oggi con il capitano che con gli alpini,/casari.roberto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622529093155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQATUNCmxTXSi6Ua&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alberto Martini,Casari Roberto,2019-05-18,1,Casari Roberto ..diciamo che compensano 👍,/alex.martini.754918?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622529093155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQATUNCmxTXSi6Ua&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luciana Tomasin,Casari Roberto,2019-05-18,2,"Casari Roberto si che peccato così pochi per gli alpini, ma meglio il pieno oggi",/luciana.tomasin.12?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622529093155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQATUNCmxTXSi6Ua&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mario Occhini,ROOT,2019-05-18,5,Continuo a non vedere fiano.. Ma anche lui non è stato invitato? 😂😂😂,/profile.php?id=100008505257880&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438418160052553&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDj6YWBT-oUvjYL&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Grazia Pascoletti,Mario Occhini,2019-05-18,,Aveva mal di stomaco 😂😂😂😂😂,/mariagrazia.pascoletti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438418160052553&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDj6YWBT-oUvjYL&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Michele Tiengo,ROOT,2019-05-18,20,"Voglio proprio vedere e sentire cosa diranno nei TG, come potranno giustificare tanta gente ??? Tutti razzisti e fascisti 😉",/michele.tiengo.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622521088155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDlSHVMphn0Lt7x&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giulio Salvetti,Michele Tiengo,2019-05-18,,Michele Tiengo Sì,/simone.mazzone.75?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622521088155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDlSHVMphn0Lt7x&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Michele Tiengo,Michele Tiengo,2019-05-18,1,Giulio Salvetti,/michele.tiengo.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622521088155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDlSHVMphn0Lt7x&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Brigida Virgili,Michele Tiengo,2019-05-18,2,Michele Tiengo io invece non guarderò nessun tg è stata troppo bella questa giornata e non voglio rovinarmela sentendo bugie. Io c'ero ed ho visto con i miei occhi.,/profile.php?id=100009742724883&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622521088155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDlSHVMphn0Lt7x&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Laura Campo,Michele Tiengo,2019-05-18,,"Michele Tiengo speravi che ne parlassero...illuso parlano del corteo contro Sallvini dicendo stupidaggini (tg3) ,rete 4 ...poco o niente",/laura.campo.1426?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622521088155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDlSHVMphn0Lt7x&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Laura Campo,Michele Tiengo,2019-05-18,,Brigida Virgili brava,/laura.campo.1426?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622521088155&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDlSHVMphn0Lt7x&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Santopaolo Anna,ROOT,2019-05-18,5,Si Matteo la Madonnina ti proteggerà sempre 💚💚forza lega forza Capitano,/santopaolo.anna?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411748295514906&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCcyBsbY7XvFZaQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Santopaolo Anna,2019-05-18,,la.Madonnina ha di meglio da fare che proteggere sto cialtrone,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411748295514906&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCcyBsbY7XvFZaQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pietro Tidu,ROOT,2019-05-18,48,Una fiumana di persone che vogliono mettere Questa Europa gambe all'aria,/pietro.tidu.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523003155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBnIiQsXyMexYZ-&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sergio Paternoster,Pietro Tidu,2019-05-18,1,Pietro Tidu io sono pronto,/sergio.paternoster?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523003155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBnIiQsXyMexYZ-&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pietro Tidu,Pietro Tidu,2019-05-18,,Sergio Paternoster anche la mia famiglia,/pietro.tidu.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523003155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBnIiQsXyMexYZ-&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fabiana Dei Rossi,Pietro Tidu,2019-05-18,1,Sarebbe ora,/fabiana.deirossi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523003155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBnIiQsXyMexYZ-&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pietro Tidu,Pietro Tidu,2019-05-18,1,Sergio Paternoster senza ombra di dubbio,/pietro.tidu.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523003155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBnIiQsXyMexYZ-&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daria Fiammengo,Pietro Tidu,2019-05-18,2,Pietro Tidu L ' onda verde 👍👏👏👏,/daria.fiammingo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523003155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBnIiQsXyMexYZ-&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alessandro Luperdi,Pietro Tidu,2019-05-18,1,Attento che vai tu a gambe all'aria,/alessandro.luperdi.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523003155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBnIiQsXyMexYZ-&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pietro Tidu,Pietro Tidu,2019-05-18,2,Alessandro Luperdi Non credo rosiconi,/pietro.tidu.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523003155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBnIiQsXyMexYZ-&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosa Arienzo,Pietro Tidu,2019-05-18,,Pietro Tidu loro gia'ci sono andati ..sanno che vuol dire !!!,/rosa.arienzo.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523003155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBnIiQsXyMexYZ-&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianni Francesco Arduini,Pietro Tidu,2019-05-18,,Pietro Tidu https://www.skylinewebcams.com/it/webcam/italia/lombardia/milano/duomo-milano.html,/giannifrancesco.arduini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523003155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBnIiQsXyMexYZ-&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolo Davico,,2019-05-18,49,"Stai raccogliendo gli sforzi,la.fatica e la caparbietà che stai mettendo in campo! Ti saremo sempre vicini! Grande Salvini!",/paolo.davico.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=30&av=100013534782121&eav=AfZJH1Q2rHc2GVbuXYdL8v6M5ieHzMLz__nUV7-hgmOxSMHkuSc7_zjFzNPp6pDxe0w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppina Buceti,ROOT,2019-05-18,5,Matteo mia mamma ha detto di metterti una giacca che prendi freddo 💚,/giuseppina.buceti.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438423990051970&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDwu3h0-NEkO_K1&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sonia Pannunzi,Giuseppina Buceti,2019-05-18,,Giuseppina Buceti le mamme ❤️❤️ sempre premurose,/signorina.silvani.5494?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438423990051970&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDwu3h0-NEkO_K1&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pietro Cusin,,2019-05-18,5,SAVIANO e pagliacci sinistri appecorati allisciagroppe..... Avete fatto la scorta di MALOX e BRUCIACUL??? 😂😂😂😂😂😂😂,/pietro.cusin.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=120&av=100013534782121&eav=AfZCZ_v96cT8f4nlFIHYigDJaZHOvj8mLsZ-YbtQ3FFSx2A23A5bafRXNErcG5zz4zI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pietro Cusin,,2019-05-18,5,"Se queste persone sono fasciste allora sono orgoglioso di essere come loro.... W la LEGA, W MATTEO SALVINI💪💪💪💪",/pietro.cusin.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=120&av=100013534782121&eav=AfZCZ_v96cT8f4nlFIHYigDJaZHOvj8mLsZ-YbtQ3FFSx2A23A5bafRXNErcG5zz4zI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Zandon,,2019-05-18,5,Hai visto quanta Italia 🇮🇹 è con te ti diamo la carica per andare avanti bravoooo,/angela.zandon?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=120&av=100013534782121&eav=AfZCZ_v96cT8f4nlFIHYigDJaZHOvj8mLsZ-YbtQ3FFSx2A23A5bafRXNErcG5zz4zI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Formichetti,,2019-05-18,5,❤ grazieeeee Matteo 💪💪 forza andiamo avanti per riprenderci la nostra bella Italia,/carla.formichetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=120&av=100013534782121&eav=AfZCZ_v96cT8f4nlFIHYigDJaZHOvj8mLsZ-YbtQ3FFSx2A23A5bafRXNErcG5zz4zI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ale Ianna,,2019-05-18,5,"Meraviglioso, commovente, emozionante... GRANDE CAPITANO 💚💚💚💚💚 tvb",/ale.ianna.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=120&av=100013534782121&eav=AfZCZ_v96cT8f4nlFIHYigDJaZHOvj8mLsZ-YbtQ3FFSx2A23A5bafRXNErcG5zz4zI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Leonardo Pellizzari,,2019-05-18,5,Salvini va a Lampedusa che i 4 babbuini della sea watch tra poco attraccano,/pellizzari.leo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=120&av=100013534782121&eav=AfZCZ_v96cT8f4nlFIHYigDJaZHOvj8mLsZ-YbtQ3FFSx2A23A5bafRXNErcG5zz4zI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francy Baldo,,2019-05-18,5,"Ti ho seguito in diretta,è stata una bellissima manifestazione... bravo mi hai,mi avete fatto emozionare... W Matteo,W la lega... vi adoro💙💙💙",/francy.baldo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=120&av=100013534782121&eav=AfZCZ_v96cT8f4nlFIHYigDJaZHOvj8mLsZ-YbtQ3FFSx2A23A5bafRXNErcG5zz4zI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pierangela Vergani,ROOT,2019-05-18,53,"Grande Capitano, sei la nostra forza",/profile.php?id=100005281006828&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515118155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBYZJz4NZovwRz4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Riccardo Messina,Pierangela Vergani,2019-05-18,4,Pierangela Vergani stai messa male,/riccardo.messina.39?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515118155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBYZJz4NZovwRz4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pierangela Vergani,Pierangela Vergani,2019-05-18,3,"Riccardo Messina sicuro..??? . Io sono con lui, e il resto non conta",/profile.php?id=100005281006828&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515118155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBYZJz4NZovwRz4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Rita Marchese,Pierangela Vergani,2019-05-18,8,Riccardo Messina siete voi invece messi male a queste elezioni.,/profile.php?id=100012453963500&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515118155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBYZJz4NZovwRz4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pierangela Vergani,Pierangela Vergani,2019-05-18,4,Dovete rosicare. Voi siete messi male,/profile.php?id=100005281006828&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515118155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBYZJz4NZovwRz4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nadio de Giuli,Pierangela Vergani,2019-05-18,4,Riccardo Messina Sei tu quello messo male PIDIOTA!!!,/nadio.degiuli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515118155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBYZJz4NZovwRz4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianluca Furlan,Pierangela Vergani,2019-05-18,1,sbarbatelli convinti che scrivono i loro commentini idioti e dopo vanno su Google a vedere dov'è Milano,/profile.php?id=100011279413623&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515118155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBYZJz4NZovwRz4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Martina Di Meo,ROOT,2019-05-18,5,Grande salvini non deludere gli italiani manda a casa i cinque stelle sono degli illusi,/martina.dimeo.184?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366825504177559&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCRC3pCLmJZvdNi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simone Moretti,Martina Di Meo,2019-05-18,,Forza salvini forza Martina 👍🏻😉,/simone.moretti.165?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366825504177559&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCRC3pCLmJZvdNi&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Stefano Schiaramazzi,ROOT,2019-05-18,25,"Oggi ho capito una cosa. Le zecche non hanno il senso della misura...ma non nel senso che non si regolano a fare schifo, no no, non si rendono proprio conto di quante persone fossero in piazza. E vabbè ci sono problemi peggiori, mi son detto, poi ho capito che considerano quella piazza uno spazietto di modeste dimensioni🤔",/stefano.schiaramazzi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622549103155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDXOdBKPPSIK0sT&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Eugenia Merlo,Stefano Schiaramazzi,2019-05-18,5,"Stefano Schiaramazzi è non solo nella piazza, ma pure nelle vie adiacenti. 😊👍",/eugenia.merlo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622549103155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDXOdBKPPSIK0sT&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Stefano Schiaramazzi,Stefano Schiaramazzi,2019-05-18,7,Ferma ferma! Se provi a farglielo capire l'unico neurone che hanno si suicida per lo sforzo eccessivo. Vogliamo bene ai nostri parassiti❤,/stefano.schiaramazzi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622549103155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDXOdBKPPSIK0sT&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Brigida Virgili,Stefano Schiaramazzi,2019-05-18,4,Stefano Schiaramazzi si vede che non si sono mai mossi dal loro paesello e non hanno mai visto come veramente è piazza del Duomo a milano,/profile.php?id=100009742724883&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622549103155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDXOdBKPPSIK0sT&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Stefano Schiaramazzi,Stefano Schiaramazzi,2019-05-18,,"Brigida Virgili eh si, il Duomo li mette a disagio...è un'opera architettonica antecedente le baracche partigiane e quindi per loro non è degno di esistere 😂😂",/stefano.schiaramazzi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622549103155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDXOdBKPPSIK0sT&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Michela Nalbone Pasquale Polizzi,ROOT,2019-05-18,3,"Lascia perdere i 5stelle sono comumisti camuffati, ma peggiori. Tu sei L'Italia che vogliamo.",/profile.php?id=100010327652284&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590881248101000&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQABMO2Lq3VTHjl2&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Monica Bellezza Italiana,Michela Nalbone Pasquale Polizzi,2019-05-18,,SIAMO NOI che DOBBIAMO FARLO come Oggi ad Esempio,/monica.miri21?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590881248101000&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQABMO2Lq3VTHjl2&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Vincenzo Contabile,ROOT,2019-05-18,23,Capitano sei grande al vostro comizio super affilato complimenti lega,/profile.php?id=100004195005369&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520903155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDYts-5lj88TygE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria D'aquino,Vincenzo Contabile,2019-05-18,,Vincenzo Contabile GRANDISSI MO CAPITANO SAREMO SEMPRE CON TE,/profile.php?id=100008423746378&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520903155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDYts-5lj88TygE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Vincenzo Contabile,Vincenzo Contabile,2019-05-18,,Maria D'aquino speriamo di bene al nostro capitano,/profile.php?id=100004195005369&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520903155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDYts-5lj88TygE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Vincenzo Contabile,Vincenzo Contabile,2019-05-18,,,/profile.php?id=100004195005369&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520903155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDYts-5lj88TygE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ofelia Cerminara,ROOT,2019-05-18,4,parlate male solo per invidia.E' un grande e Non ha paura di nessuno.,/ofelia.cerminara.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590885858100539&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBIaGQ652LpkSme&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Ofelia Cerminara,2019-05-18,1,una grande patacca,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590885858100539&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBIaGQ652LpkSme&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Troiani Schirripa,ROOT,2019-05-18,28,Non posso venire. Ho genitori anziani e non stanno bene. Il mio ❤️ sarà lì con te quel giorno,/silvana.troiani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531588155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBVguUKJ6UKxlti&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Breeze Breeze,Silvana Troiani Schirripa,2019-05-18,5,Silvana Troiani Schirripa Oggi è “quel giorno “ 👌,/breeze201771?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531588155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBVguUKJ6UKxlti&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Troiani Schirripa,Silvana Troiani Schirripa,2019-05-18,2,😥 Breeze Breeze io avevo capito il 26 maggio,/silvana.troiani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531588155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBVguUKJ6UKxlti&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Silvana Troiani Schirripa,2019-05-18,2,Silvana Troiani Schirripa si 😊 voteremo domenica....26 maggio non mancare alle urne con scheda elettorale!! 💪💚😘,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531588155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBVguUKJ6UKxlti&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Troiani Schirripa,Silvana Troiani Schirripa,2019-05-18,,Emily Ronny 😃non mancherò,/silvana.troiani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531588155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBVguUKJ6UKxlti&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Troiani Schirripa,Silvana Troiani Schirripa,2019-05-18,,,/silvana.troiani?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531588155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBVguUKJ6UKxlti&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Breeze Breeze,Silvana Troiani Schirripa,2019-05-18,,"Silvana Troiani Schirripa Tranquilla, l’importante è che NON mancherai domenica prossima, all’appuntamento più importante 🙂",/breeze201771?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531588155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBVguUKJ6UKxlti&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ilva Radi,ROOT,2019-05-18,3,"E' commovente sentire i commenti della gente che ti abbraccia, che ti strilla dietro, sei un grandissimo",/ilva.radi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_364130927784955&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAt1zKlgp7IK0m4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Ilva Radi,2019-05-18,,"é triste,inveve",/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_364130927784955&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAt1zKlgp7IK0m4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marco Sburlino,ROOT,2019-05-18,17,anche quando andavano quelli del PD le piazze erano piene....di idioti!,/marco.sburlino?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512643155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCiitkntAB1IFVZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nadia Casalegno,Marco Sburlino,2019-05-18,1,Marco Sburlino concordo,/nadia.casalegno?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512643155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCiitkntAB1IFVZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosella Alessandri,Marco Sburlino,2019-05-18,,Marco Sburlino è una impressione.....non é piena...sono gli ombrelli che prendono spazio🤣🤣🤣,/rosella.alessandri?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512643155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCiitkntAB1IFVZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alfredo Arrotino Itinerante,Marco Sburlino,2019-05-18,,Scommetto che eri sotto il palco😘😘,/alfredo.azzola?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512643155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCiitkntAB1IFVZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosa Arienzo,Marco Sburlino,2019-05-18,,E nun ce vonno sta !!!!😂😂😂,/rosa.arienzo.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622512643155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCiitkntAB1IFVZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nicola Antonini,,2019-05-18,51,giornata storica Matteo,/nicola.antonini.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=40&av=100013534782121&eav=AfZl-lphZQImrleD6pOzNgZZ7b3GdanepLmNisTCFpbvkJSVf_0mq5i__5yfSWL4lrs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefano de Luca,,2019-05-18,20,"La sinistra cerca di riempire le piazzole con il trasporto di immigrati, le loro risorse.....",/stefano.deluca.7169?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=40&av=100013534782121&eav=AfZl-lphZQImrleD6pOzNgZZ7b3GdanepLmNisTCFpbvkJSVf_0mq5i__5yfSWL4lrs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Elanor,,2019-05-18,19,"Si sta scrivendo la storia ! W Salvini, W l'Alleanza ! 💖💖💖",/monicamorace?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=40&av=100013534782121&eav=AfZl-lphZQImrleD6pOzNgZZ7b3GdanepLmNisTCFpbvkJSVf_0mq5i__5yfSWL4lrs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Simone De Fusin Prosdocimi,,2019-05-18,15,Avevi dubbi ?? Sei l'unico che descrive la vera realtà italiana e non solo.,/profile.php?id=100009312822788&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=40&av=100013534782121&eav=AfZl-lphZQImrleD6pOzNgZZ7b3GdanepLmNisTCFpbvkJSVf_0mq5i__5yfSWL4lrs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Saccone,,2019-05-18,17,La sinistra riparta dagli striscioni e da Zorro 😂😂😂😂😂,/andrea.saccone.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=40&av=100013534782121&eav=AfZl-lphZQImrleD6pOzNgZZ7b3GdanepLmNisTCFpbvkJSVf_0mq5i__5yfSWL4lrs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carlo Diano,ROOT,2019-05-18,2,Chi ha detto che non lavora scatta più foto lui che un fotografo professionista,/carlo.emanuela?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_641994646264040&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBUiVEfwyatew3-&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loreta Prenz,Carlo Diano,2019-05-18,1,Rosicone,/loreta.prenz?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_641994646264040&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBUiVEfwyatew3-&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maurizio Bausi,Carlo Diano,2019-05-18,,Un grande!! Unico 💚💚💚💚💚💚💚💚💚💚💚,/profile.php?id=100009684131340&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_641994646264040&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBUiVEfwyatew3-&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cristina Cringu,Carlo Diano,2019-05-18,1,L'invidia e una brutta malattia,/cristina.cringu?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_641994646264040&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBUiVEfwyatew3-&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carlo Karl Penello,,2019-05-18,5,"Contro i fascisti di sinistra,antiitaliani e antidemocratici",/carlo.penello.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=130&av=100013534782121&eav=AfahHXIyvXy5mUQA0VVqXiLDCxfL2bzVAcbKyNyVjV_jEh13kcEIAkR2DqPNrpCZdEo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Guerrasio,,2019-05-18,5,"Tutti a votare il 26 solo così possiamo cambiare, forza ministro",/anna.guerrasio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=130&av=100013534782121&eav=AfahHXIyvXy5mUQA0VVqXiLDCxfL2bzVAcbKyNyVjV_jEh13kcEIAkR2DqPNrpCZdEo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Limpetti,,2019-05-18,4,Sono felice di averti potuto seguire in diretta sei Grande continua così che potrai cambiare l'Italia 😘😘😘,/paola.limpetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=130&av=100013534782121&eav=AfahHXIyvXy5mUQA0VVqXiLDCxfL2bzVAcbKyNyVjV_jEh13kcEIAkR2DqPNrpCZdEo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Merico,,2019-05-18,4,Ciao Matteo siiii sento battere il cuoreee!!!! Anke il miooooo sempre X te!!!!!💚🇮🇹😘🇮🇹💚,/maria.merico.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=130&av=100013534782121&eav=AfahHXIyvXy5mUQA0VVqXiLDCxfL2bzVAcbKyNyVjV_jEh13kcEIAkR2DqPNrpCZdEo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Manuela Ronchi,,2019-05-18,4,Il capitano non ha paura di stare tra la gente!!!!! MATTEO MILANO TI AMA👍👍👍👍👍,/manuela.ronchi.50?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=130&av=100013534782121&eav=AfahHXIyvXy5mUQA0VVqXiLDCxfL2bzVAcbKyNyVjV_jEh13kcEIAkR2DqPNrpCZdEo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Guido Canali,ROOT,2019-05-18,11,Per fortuna ci sono gli ombrelli che coprono i buchi,/guido.canali?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&count=28&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBy987LjhFHd_Q6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marcello Colombo,Guido Canali,2019-05-18,2,"Heheheheheh che patetico schifoso comunista, adorabili i vostri millemila commenti contro salvini comunque, cosi idioti e uguali tra loro che sembrano creati ad hoc da un codice di programmazione",/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&count=28&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBy987LjhFHd_Q6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marcello Colombo,Guido Canali,2019-05-18,2,Arrenditiiii se il popola vota il popolo comanda!! Pericolosiiiiissimiii,/marcello.colombo.545?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&count=28&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBy987LjhFHd_Q6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ivana Solmi,Guido Canali,2019-05-18,,Anna Maria Aimar cd,/ivana.solmi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&count=28&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBy987LjhFHd_Q6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Adriana Pesavento,Guido Canali,2019-05-18,1,Guido Canali unico buco che vedo il suo commento....,/adriana.pesavento?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&count=28&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBy987LjhFHd_Q6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Roberta Cò,Guido Canali,2019-05-18,1,Guido Canali hai bisogno di un buon oculista!,/roberta.co1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&count=28&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBy987LjhFHd_Q6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Momo Didi,Guido Canali,2019-05-18,1,Bacioni !! 😂,/momo.didi.54922?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&count=28&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBy987LjhFHd_Q6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giovanna Palombo,Guido Canali,2019-05-18,1,"Guido Canali ridicolo, commento da asilo mariuccia.",/giovanna.palombo.90?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&count=28&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBy987LjhFHd_Q6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giliola Trolli,Guido Canali,2019-05-18,1,Guido Canali,/giliola.trolli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&count=28&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBy987LjhFHd_Q6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Giammaria,Guido Canali,2019-05-18,,Guido Canali non sai proprio un tubo io c’ero e ho visto quindi rosica,/silvana.giammaria?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&count=28&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBy987LjhFHd_Q6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Antonietta D'Anna,Guido Canali,2019-05-18,5,"Il buco nella tua testa,che ti manca qualcosa",/puffettao.puffetto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=10&count=28&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA6iqhgb26YVQZb +Anna Maria Aimar,Guido Canali,2019-05-18,7,,/annamaria.aimar.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=10&count=28&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA6iqhgb26YVQZb +Nicolò Chiapperini,Guido Canali,2019-05-18,4,"Guido Canali fai cosa saggia e giusta , comincia a giocare alla Blue Whale",/nicolo.chiapperini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=10&count=28&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA6iqhgb26YVQZb +Guido Canali,Guido Canali,2019-05-18,3,Voi siete completamente matti e pericolosi,/guido.canali?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=10&count=28&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA6iqhgb26YVQZb +Emily Ronny,Guido Canali,2019-05-18,6,Guido Canali già....molto pericolosi !!SALVINI FOREVER💪💚💖,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=10&count=28&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA6iqhgb26YVQZb +Wanda Bottes,Guido Canali,2019-05-18,4,Guido Canali io seguo lui..nn vado a criticare o insultare altri partiti..se nn ti garba il Capitano..gira alla larga ok..aah dimenticavo un bacio con il sorriso 💋,/wanda.bottes?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=10&count=28&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA6iqhgb26YVQZb +Rosy Rosita,Guido Canali,2019-05-18,2,Guido Canali xche sei qui?,/rosy.procopio.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=10&count=28&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA6iqhgb26YVQZb +Marzia Adami,Guido Canali,2019-05-18,4,"Guido Canali ,.. mi sa che il tuo buco invece te l’hanno già riempito .. e più volte anche . Per questo ti brucia così tanto NEH ???",/profile.php?id=100010358501490&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=10&count=28&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA6iqhgb26YVQZb +Laura Machieraldo,Guido Canali,2019-05-18,3,Guido Canali mi dispiace tu stia soffrendo però capisco ... è difficile accettare la realtà 😉,/laura.machieraldo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=10&count=28&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA6iqhgb26YVQZb +Marzia Adami,Guido Canali,2019-05-18,3,Guido Canali la stai usando ?????,/profile.php?id=100010358501490&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=10&count=28&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA6iqhgb26YVQZb +Alessio Citton,ROOT,2019-05-18,4,Provo pena per tutti coloro che non sanno che quello è uno dei pagliacci che vi sta scavando la fossa. Assieme a tutti gli altri partiti,/alessio.citton?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loreta Prenz,Alessio Citton,2019-05-18,,Viva Salvini,/loreta.prenz?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvio Ale,Alessio Citton,2019-05-18,1,E tu sapesdi quanti provano pena per te...,/silvio.ale.58?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna Di Guida,Alessio Citton,2019-05-18,,E io provo pena per te e per tutti quelli come te,/diguida1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosi Dalla Porta,Alessio Citton,2019-05-18,,La fossa jajaja 😀,/rossi.dallaporta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Roberta Valentini,Alessio Citton,2019-05-18,1,Intanto il video se lo guarda..cambi canale,/roberta.valentini.399?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fabio Costanza,Alessio Citton,2019-05-18,1,"Si perché la sinistra invece ha fatto tantissimo in più di 15 anni di governo 😒 , rosica meno e apri gli occhi",/fabio.costanza.79?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ottavia Frasconi,Alessio Citton,2019-05-18,,Alessio Citton la sua spero!,/ottavia.frasconi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Piera Busini,Guido Canali,2019-05-18,3,Guido Canali cretino,/piera.busini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=20&count=28&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDMvETtCMwzDOIM +Wanda Bottes,Guido Canali,2019-05-18,12,Guido Canali voi userete i tendoni x coprire i buchi..si rosica alla grande,/wanda.bottes?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=20&count=28&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDMvETtCMwzDOIM +Federico Baraldi,Guido Canali,2019-05-18,4,STATE CREPANDO,/federico.baraldi.142?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=20&count=28&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDMvETtCMwzDOIM +Rosy Rosita,Guido Canali,2019-05-18,6,Guido Canali hai controllato bene ? Ridicolo sono in Duomo i buchi siete voi poveracci,/rosy.procopio.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=20&count=28&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDMvETtCMwzDOIM +Giuseppa Mazzullo,Guido Canali,2019-05-18,2,Piera Busini crretino è poco!,/giuseppa.mazzullo.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=20&count=28&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDMvETtCMwzDOIM +Davide Ross,Guido Canali,2019-05-18,5,come stai rodendo!!! i buchi ce l'ha tua sorella riempiti da qualcuno che vota pd,/david.rollins.5055?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=20&count=28&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDMvETtCMwzDOIM +Guido Canali,Guido Canali,2019-05-18,3,Che signori!,/guido.canali?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=20&count=28&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDMvETtCMwzDOIM +Miky Stasio,Guido Canali,2019-05-18,9,Cmq sia penso che se fosse stata una bella giornata ci sarebbero state ancora più persone infatti in molti han seguito la diretta sui social :),/fatina.miky?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517593155&p=20&count=28&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDMvETtCMwzDOIM +Alessio Citton,ROOT,2019-05-18,4,Provo pena per tutti coloro che non sanno che quello è uno dei pagliacci che vi sta scavando la fossa. Assieme a tutti gli altri partiti,/alessio.citton?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loreta Prenz,Alessio Citton,2019-05-18,,Viva Salvini,/loreta.prenz?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvio Ale,Alessio Citton,2019-05-18,1,E tu sapesdi quanti provano pena per te...,/silvio.ale.58?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna Di Guida,Alessio Citton,2019-05-18,,E io provo pena per te e per tutti quelli come te,/diguida1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosi Dalla Porta,Alessio Citton,2019-05-18,,La fossa jajaja 😀,/rossi.dallaporta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Roberta Valentini,Alessio Citton,2019-05-18,1,Intanto il video se lo guarda..cambi canale,/roberta.valentini.399?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fabio Costanza,Alessio Citton,2019-05-18,1,"Si perché la sinistra invece ha fatto tantissimo in più di 15 anni di governo 😒 , rosica meno e apri gli occhi",/fabio.costanza.79?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ottavia Frasconi,Alessio Citton,2019-05-18,,Alessio Citton la sua spero!,/ottavia.frasconi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489233988262&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBg_FeZ1aAuTVFq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giovanni Gionny,ROOT,2019-05-18,12,In segno d'amicizia vi invio il tramonto dell'isola di Favignana arcipelago delle isole Egadi. La pace sia sempre nei nostri cuori . Siamo brave persone meravigliose e questo lo dobbiamo evidenziare sempre . Un abbraccio amici di Matteo,/giovanni.gionny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265832690336527&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAg-tBXuX0-Nffz&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sara Antonella Casacci,Giovanni Gionny,2019-05-18,1,"Giovanni Gionny grazie per il pensiero e per il dono, entrambi stupendi come la Sicilia ed i siciliani ♥️😘",/jolandalacorsara?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265832690336527&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAg-tBXuX0-Nffz&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emiliano Bruni,,2019-05-18,4,"Salvini con il buon senso e la buona volontà si spazza via gli avversari Matteo Salvini PRESIDENTE DELLA REPUBBLICA,,,,,,,,,,,",/emiliano.brunitorcida?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=140&av=100013534782121&eav=AfYKmHiFcNlV2wYdyNta_-Mppbe3TqruBk3r1z54ll2iSl_96HZhbdCq5kgsU5tf0lQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Natale Mesiti,,2019-05-18,4,Continua così vai avanti noi ti saremo sempre accanto vai capitano,/natale.mesiti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=140&av=100013534782121&eav=AfYKmHiFcNlV2wYdyNta_-Mppbe3TqruBk3r1z54ll2iSl_96HZhbdCq5kgsU5tf0lQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabrizio Lenzi,,2019-05-18,4,ci attendono giorni di lotta e non dobbiamo mollare.forza matteo.forza europa.,/fabrizio.lenzi.12?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=140&av=100013534782121&eav=AfYKmHiFcNlV2wYdyNta_-Mppbe3TqruBk3r1z54ll2iSl_96HZhbdCq5kgsU5tf0lQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Corsi,,2019-05-18,4,"grandissimi Salvini e Le Pen, bellissima manifestazione. sei la nostra unica speranza, avanti così, non mollare mai! 👍",/andrea.corsi.1276?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=140&av=100013534782121&eav=AfYKmHiFcNlV2wYdyNta_-Mppbe3TqruBk3r1z54ll2iSl_96HZhbdCq5kgsU5tf0lQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudio Sisti,,2019-05-18,4,forza matteo non mollare anche se hai tuti contro noi siamo sempre con tee cambia alleato lascia lo smidollato di dimaio che è peggio di giuda😠,/claudio.sisti.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=140&av=100013534782121&eav=AfYKmHiFcNlV2wYdyNta_-Mppbe3TqruBk3r1z54ll2iSl_96HZhbdCq5kgsU5tf0lQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Biba Vlajic,,2019-05-18,4,Gran bella persona..davvero. Non riesco a smettere di guardare quel che rimane della diretta..GRAZIE!!!🤗🤗🤗🤗❤,/biba.vlajic?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=140&av=100013534782121&eav=AfYKmHiFcNlV2wYdyNta_-Mppbe3TqruBk3r1z54ll2iSl_96HZhbdCq5kgsU5tf0lQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Bressan,,2019-05-18,4,bravo continua per te si il popolo italiano ti ascolta e ti supporta uno che quando decide lo fa e non cambia idea,/profile.php?id=100009378659528&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=140&av=100013534782121&eav=AfYKmHiFcNlV2wYdyNta_-Mppbe3TqruBk3r1z54ll2iSl_96HZhbdCq5kgsU5tf0lQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mario Lavorgna,,2019-05-18,3,Grande Matteo!! Il 26 maggio primo partito in Italia e in Europa!!!! Viva la lega!!!👍👍👍 grande Nicola Molteni!!!!,/mario.lavorgna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=140&av=100013534782121&eav=AfYKmHiFcNlV2wYdyNta_-Mppbe3TqruBk3r1z54ll2iSl_96HZhbdCq5kgsU5tf0lQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Grazia Tognin,ROOT,2019-05-18,11,Per la Repubblica...in piazza solo fascisti con la Le Penn 😂😂😂,/mariagrazia.tognin?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC6KxPhIMgLsjYN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Grazia Tognin,Maria Grazia Tognin,2019-05-18,1,Serena Simonetti guarda che il mio commento era ironico,/mariagrazia.tognin?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC6KxPhIMgLsjYN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Serena Simonetti,Maria Grazia Tognin,2019-05-18,1,Maria Grazia Tognin chiedo scusa ormai mi parte il dito in automatico😁😁😁😁,/profile.php?id=100008114416549&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC6KxPhIMgLsjYN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mario Bartolomei,Maria Grazia Tognin,2019-05-18,,Maria Grazia Tognin beh se lo dice republica ne sono felice di esserlo ......,/mario.bartolomei.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC6KxPhIMgLsjYN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mario Bartolomei,Maria Grazia Tognin,2019-05-18,,,/mario.bartolomei.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC6KxPhIMgLsjYN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mario Bartolomei,Maria Grazia Tognin,2019-05-18,3,Questi sono quelli bravi che vogliono accogliere tutti meno chi era italiano .... sputatevi in faccia .... compagni,/mario.bartolomei.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC6KxPhIMgLsjYN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Brigida Virgili,Maria Grazia Tognin,2019-05-18,1,Mario Bartolomei pure io. Strafelice e orgogliosa.,/profile.php?id=100009742724883&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC6KxPhIMgLsjYN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tiziana Sayan,Maria Grazia Tognin,2019-05-18,1,"Antonio Maione ...sì,sì...ringrazi,ringrazi...perché non va un po' di tempo a vivere ...in Venezuela? Là c'è un'ottima persona comunista che fa vivere da nababbi il suo popolo . Un mesetto....",/tiziana.sayan?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC6KxPhIMgLsjYN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tonio LosAngeles,Maria Grazia Tognin,2019-05-18,,Maria Grazia Tognin cafalona,/tonio.martiniello?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC6KxPhIMgLsjYN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mario Bartolomei,Maria Grazia Tognin,2019-05-18,,,/mario.bartolomei.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC6KxPhIMgLsjYN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Grazia Tognin,Maria Grazia Tognin,2019-05-18,,Tonio LosAngeles detto da uno come te... sai che peso!!!,/mariagrazia.tognin?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&count=12&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC6KxPhIMgLsjYN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sasà de Vivo,ROOT,2019-05-18,2,"Salvini per renderti invincibile con il potere che hai adesso, elimina furfanti e ladroni che si nascondono dentro la lega. Basta presunzione di innocenza a gogò !!!!!",/sasa.devivo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590879088101216&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCeHxs5DRaXMTGC&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Antonio Maione,Maria Grazia Tognin,2019-05-18,,Maria Grazia Tognin ringraziamo la repubblica,/antonio.maione.12?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&p=10&count=12&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDlJ1eqIwchxTFB +Serena Simonetti,Maria Grazia Tognin,2019-05-18,4,Maria Grazia Tognin orgogliosa di essere anticomunista intanto I non fascisti come dici tu stanno a far casino e i fascisti ordinati e composti ma finitela con questa storia che fate ridere continuateva guardare indietro così scomparite proprio i partiti senza idee è quella la fine che fanno,/profile.php?id=100008114416549&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537398155&p=10&count=12&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDlJ1eqIwchxTFB +Alberto Manassero,ROOT,2019-05-18,2,"Splendida giornata grazie a te Matteo. Il tuo discorso di oggi può far cambiare idea a molti indecisi, rendilo fruibile fuori dalle “dirette”",/alberto.manassero.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438418793385823&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCx1iUgXkMGHWdz&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio Luciano Manuli,Alberto Manassero,2019-05-18,1,Ma tu c'eri ?,/giorgio.manuli.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438418793385823&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCx1iUgXkMGHWdz&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alberto Manassero,Alberto Manassero,2019-05-18,,Giorgio Luciano Manuli assolutamente!,/alberto.manassero.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438418793385823&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCx1iUgXkMGHWdz&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio Luciano Manuli,Alberto Manassero,2019-05-18,1,Ma ero li mannaggia alla miseria,/giorgio.manuli.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438418793385823&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCx1iUgXkMGHWdz&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alberto Manassero,Alberto Manassero,2019-05-18,,Giorgio Luciano Manuli e scrivermi?,/alberto.manassero.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438418793385823&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCx1iUgXkMGHWdz&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Grazia Pinato,ROOT,2019-05-18,10,Ma quanto rosicano gli infiltrati di questa pagina del PD? Nemmeno davanti all'evidenza di una diretta fb si arrendono al fatto che la piazza era strapiena !!! Bastava vederla invece di postare foto fatte ore prima ...negano pure l'evidenza come sempre 😂😂😂...colpiti e affondati !!!,/grazia.pinato?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265832607003202&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC4hPCm0OXXiTqX&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mariarosa Tarabella,Grazia Pinato,2019-05-18,1,"Grazia Pinato ormai non sono più creduti, i loro fedelissimi vivono di ricordi e ora di illusione",/mariarosa.tarabella.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265832607003202&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC4hPCm0OXXiTqX&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pier Luigi Capra,,2019-05-18,13,Votiamo compatti LEGA e ci leviamo dalle palle in gran numero di sanguisughe e parassiti.....,/pier.l.capra?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=50&av=100013534782121&eav=Afb-xGB_wsfXLdv-591lvdYRf4AwUYVky3tGRNId-0BfTCnm-fooiOjUQYu0L39n8zk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carmelo Rocca,,2019-05-18,13,"Tutto bello ,ordinato e pacifico , queste sono lezioni di civiltà , bravi tutti, viva la democrazia viva la Lega , viva Salvini",/carmelo.rocca.31?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=50&av=100013534782121&eav=Afb-xGB_wsfXLdv-591lvdYRf4AwUYVky3tGRNId-0BfTCnm-fooiOjUQYu0L39n8zk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Adriana Martinucci,,2019-05-18,14,Con Le lenzuola qualcuno dovrebbe fare i picnic 🧺 all’aria aperta appena smette di piovere ...per il resto viva la buona Italia 🇮🇹 quella senza scontri..senza bulli ..senza parolacce ...senza sciroccati che danneggiano auto della polizia! 🇮🇹♥️,/adriana.martinucci?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=50&av=100013534782121&eav=Afb-xGB_wsfXLdv-591lvdYRf4AwUYVky3tGRNId-0BfTCnm-fooiOjUQYu0L39n8zk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Alessandrella,,2019-05-18,13,E in arrivo una nuova era grande capitano vai avanti cosi ....una folla cosi non lho mai vista mammamia .,/francesca.alessandrella.12?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=50&av=100013534782121&eav=Afb-xGB_wsfXLdv-591lvdYRf4AwUYVky3tGRNId-0BfTCnm-fooiOjUQYu0L39n8zk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Sarracini,,2019-05-18,11,assistiamo a dittatura rossa di stampa .. giudici .. per fortuna che non oscurano la verità su internet ... Non possono tappare gli occhi ... forza capitano,/giuseppe.sarracini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=50&av=100013534782121&eav=Afb-xGB_wsfXLdv-591lvdYRf4AwUYVky3tGRNId-0BfTCnm-fooiOjUQYu0L39n8zk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marisa Podiani,,2019-05-18,8,Che ne penserà ora il pd l'avranno capito che noi italiani vogliamo Salvini,/marisa.podiani?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=50&av=100013534782121&eav=Afb-xGB_wsfXLdv-591lvdYRf4AwUYVky3tGRNId-0BfTCnm-fooiOjUQYu0L39n8zk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Cucaia Iorio,ROOT,2019-05-18,3,I 5 stelle a pulire i cessi non mi è piaciuta .. . Chi è questo troglodita??😠,/annacucaia?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411733408849728&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDjq4Kw_Jb2MfPJ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Monica Bellezza Italiana,Anna Cucaia Iorio,2019-05-18,1,A Pulirli Bene,/monica.miri21?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411733408849728&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDjq4Kw_Jb2MfPJ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Monica Bellezza Italiana,Anna Cucaia Iorio,2019-05-18,,Cambino SPONDA,/monica.miri21?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411733408849728&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDjq4Kw_Jb2MfPJ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marina Calabrese,Anna Cucaia Iorio,2019-05-18,,Nu scimunitu .,/marina.calabrese.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411733408849728&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDjq4Kw_Jb2MfPJ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Grazia Pascoletti,Anna Cucaia Iorio,2019-05-18,,A me siiiiii ii!!!,/mariagrazia.pascoletti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411733408849728&count=4&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDjq4Kw_Jb2MfPJ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lina Dalla,ROOT,2019-05-18,9,"A radio 24....parole di un giornalista....""piazza non piena come ci si aspettava"" ...mi sembra il contrario. Va a finire che non mi sintonizzero' più su questa radio.",/lina.dallagassa?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520768155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAWolItIPQvHmxY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ombretta Brotini,Lina Dalla,2019-05-18,1,Lina Dalla io è da parecchio che non li ascolto più!!,/ombretta.brotini.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520768155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAWolItIPQvHmxY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nicoletta Frigerio,Lina Dalla,2019-05-18,1,"Lina Dalla da tanto che non li ascolto più , faziosi",/nicoletta.frigerio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520768155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAWolItIPQvHmxY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Breeze Breeze,Lina Dalla,2019-05-18,3,"Lina Dalla Si tenga in conto che il tempo era brutto, sarebbe stata ancora più piena",/breeze201771?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520768155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAWolItIPQvHmxY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianni Francesco Arduini,Lina Dalla,2019-05-18,,Lina Dalla https://www.skylinewebcams.com/it/webcam/italia/lombardia/milano/duomo-milano.html,/giannifrancesco.arduini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520768155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAWolItIPQvHmxY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lina Dalla,Lina Dalla,2019-05-18,,Gianni Francesco Arduini a che ora??? Cosa vuole dimostrare ????,/lina.dallagassa?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520768155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAWolItIPQvHmxY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giovanna Palombo,Lina Dalla,2019-05-18,1,"Gianni Francesco Arduini fai 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣 erano le 9 del mattino, il 26 vota chi ti pare. ARIA!!!!!!!!!!!!!",/giovanna.palombo.90?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622520768155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAWolItIPQvHmxY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gennaro Massa,ROOT,2019-05-18,2,"Ti chiedo scusa io per quella stronza salernitana, scusa Matteo",/gennaro.massa.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_405334130316777&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCSiu_nVmOZf4xp&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loreta Prenz,Gennaro Massa,2019-05-18,,Cosa è successo?,/loreta.prenz?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_405334130316777&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCSiu_nVmOZf4xp&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gennaro Massa,Gennaro Massa,2019-05-18,,Loreta Prenz dormi dormi,/gennaro.massa.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_405334130316777&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCSiu_nVmOZf4xp&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loreta Di Prima,,2019-05-18,9,Ne mancavamo migliaia che per un motivo e uno altro non siamo potuti essere con voi,/profile.php?id=100010416611787&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=60&av=100013534782121&eav=Afb6QH5MS7zhgHg-uUNEirplCIkmWrvPyambM9tmS3EH_rXkdXJPGZ7Uzl-qc0HMaos&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pietro Vaccaro,,2019-05-18,7,"Spazza via questi merdosi dei 5 stelle, incapaci, nulla facenti, hanno rotto le palle, camuffati da Comunisti.",/vpietrov?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=60&av=100013534782121&eav=Afb6QH5MS7zhgHg-uUNEirplCIkmWrvPyambM9tmS3EH_rXkdXJPGZ7Uzl-qc0HMaos&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Di Grazia,,2019-05-18,5,W SALVINI E LA LEGA. IL RESTO A CASA A PARTIRE DA GIGGINO.,/elena.digrazia.52?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=60&av=100013534782121&eav=Afb6QH5MS7zhgHg-uUNEirplCIkmWrvPyambM9tmS3EH_rXkdXJPGZ7Uzl-qc0HMaos&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stephanie Colavitti,,2019-05-18,7,"Aggiungi tutti coloro che per vari motivi non sono potuti venire, ma da casa ti sostengono sempre.",/stephanie.colavitti?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=60&av=100013534782121&eav=Afb6QH5MS7zhgHg-uUNEirplCIkmWrvPyambM9tmS3EH_rXkdXJPGZ7Uzl-qc0HMaos&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Filomena Rossi,,2019-05-18,6,"Io ho seguito ,tramite web ...erano più di 20.000 a guardare ,fino alla fine della manifestazione ....",/filomena.rossi.58?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=60&av=100013534782121&eav=Afb6QH5MS7zhgHg-uUNEirplCIkmWrvPyambM9tmS3EH_rXkdXJPGZ7Uzl-qc0HMaos&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Vidal,,2019-05-18,4,"Sei riuscito a riempire la piazza in un giorno di pioggia...questo è solo l'inizio. Le Europee andranno molto bene, alla faccia di chi ti vuol male",/emanuela.vidal.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=60&av=100013534782121&eav=Afb6QH5MS7zhgHg-uUNEirplCIkmWrvPyambM9tmS3EH_rXkdXJPGZ7Uzl-qc0HMaos&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Thomas Rotondi,,2019-05-18,4,Col sole ci sarebbe stata ancora più gente! Altro. Che striscioni 🤣😂,/thomas.rotondi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=60&av=100013534782121&eav=Afb6QH5MS7zhgHg-uUNEirplCIkmWrvPyambM9tmS3EH_rXkdXJPGZ7Uzl-qc0HMaos&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Attanasio MaddyPino,,2019-05-18,4,Salvini sei grande W la lega il 26 maggio siamo tutti con te e 💚💚💚,/maddypino.attanasio?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=60&av=100013534782121&eav=Afb6QH5MS7zhgHg-uUNEirplCIkmWrvPyambM9tmS3EH_rXkdXJPGZ7Uzl-qc0HMaos&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Rosaria Ragno,,2019-05-18,4,"Emozione pura😲✌️bravo capitano,prima gli italiani ✌️✌️",/profile.php?id=100008400042883&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=60&av=100013534782121&eav=Afb6QH5MS7zhgHg-uUNEirplCIkmWrvPyambM9tmS3EH_rXkdXJPGZ7Uzl-qc0HMaos&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sandra Esse,,2019-05-18,3,"Matteo, non abbiamo avuto il piacere di vedere il Calenda senza cordoni🤣😂🤣😂 e protezione 😂😂😂...",/sandra.esse.98?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=150&av=100013534782121&eav=AfaODWxarzV8K3g4YD0Csd4fvHdUDevAG5EtzjBkonXttDRmdS6T93HoVmHtkf5_afU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Rossi,,2019-05-18,3,"Un paio hanno visto la piazza vuota....🤣 Un bravo oculista, su",/angela.rossi.9066?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=150&av=100013534782121&eav=AfaODWxarzV8K3g4YD0Csd4fvHdUDevAG5EtzjBkonXttDRmdS6T93HoVmHtkf5_afU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Feletti,,2019-05-18,3,Se era la Boldrina ci voleva tutto il battaglione folgore x fare da scorta...,/marco.feletti.56?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=150&av=100013534782121&eav=AfaODWxarzV8K3g4YD0Csd4fvHdUDevAG5EtzjBkonXttDRmdS6T93HoVmHtkf5_afU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Biolchini,,2019-05-18,3,Ciao capitano da Modena con orgoglio aspettando domani a Sassuolo forza capitano,/elena.biolchini.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=150&av=100013534782121&eav=AfaODWxarzV8K3g4YD0Csd4fvHdUDevAG5EtzjBkonXttDRmdS6T93HoVmHtkf5_afU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Jucci Serra,,2019-05-18,3,Bravo Matteo Milano ti ha dimostrato ancora quanto vali per noi Italiani,/jucci.serra?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=150&av=100013534782121&eav=AfaODWxarzV8K3g4YD0Csd4fvHdUDevAG5EtzjBkonXttDRmdS6T93HoVmHtkf5_afU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Stella Paonna,,2019-05-18,3,Ma poverino datele fiato 🥰 è un’emozione vederti in mezzo alla tua gente che ti ama ❤️ Grazieeeeeee sei la nostra speranza !!!!!!,/ginoe.stella?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=150&av=100013534782121&eav=AfaODWxarzV8K3g4YD0Csd4fvHdUDevAG5EtzjBkonXttDRmdS6T93HoVmHtkf5_afU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mario Iovino,ROOT,2019-05-18,4,Potevate essere di più!!! Peccato per la gente in galera,/mario.iovino.31?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622557448155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB8CNteAxif0EBV&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniela Rosi,Mario Iovino,2019-05-18,2,Mario Iovino prendi il malox,/daniela.rosi.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622557448155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB8CNteAxif0EBV&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniela Cacitti,Mario Iovino,2019-05-18,2,Mario Iovino rosica rosica😂,/daniela.cacitti.64?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622557448155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB8CNteAxif0EBV&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mario Iovino,Mario Iovino,2019-05-18,,Aggiorna i bot morisi,/mario.iovino.31?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622557448155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB8CNteAxif0EBV&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,Mario Iovino,2019-05-18,,Mario Iovino la foto che gira é di diverse ore prima della manifestazione.,/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622557448155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB8CNteAxif0EBV&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Florio Larese,ROOT,2019-05-18,3,"W la libertà vergognosamente calpestata dall'attuale UE , W l' Italia e W l' Europa. Grazie capitano per il bellissimo discorso che è arrivato al cuore e all' anima della gente per bene.",/florio.larese?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425863818245489&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA1gblJ5PtMbJLO&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Florio Larese,2019-05-18,,w la libertá?Ma se siete alleati con i fascisti della Le Pen..,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425863818245489&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA1gblJ5PtMbJLO&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Eva Malvolti,ROOT,2019-05-18,5,Ora i giornalai diranno che non c'è nessuno😂 attaccatevi agli striscioni vai😂👏,/eva.malvolti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301909667364846&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDCtNiakCFG1N_X&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cristina Barone,Eva Malvolti,2019-05-18,,Eva Malvolti piazza mezza vuota!!! 😂😂😂😂😂😂,/cristina.barone.79?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301909667364846&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDCtNiakCFG1N_X&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fulvia Amato,ROOT,2019-05-18,3,Irene Krasznai! C'è tantissima gente! Perché continuate a non vedere voi piddini? 👓 👓 👓,/go.fredo.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417740052595&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA4TGJ-uxsC_Bdn&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fulvia Amato,Fulvia Amato,2019-05-18,,"Ciao, Irene Krasznai",/go.fredo.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417740052595&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA4TGJ-uxsC_Bdn&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Manuela Serdi,Fulvia Amato,2019-05-18,,Hai presente il detto cieco sordomuto scemo?,/manuela.serdi.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438417740052595&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA4TGJ-uxsC_Bdn&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianluca Rizzo,,2019-05-18,3,"Orgoglioso di seguirti dal sud, da Nardò da quando hai preso il partito e lo hai fatto volare primo in Italia.",/g.lucarizzo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=160&av=100013534782121&eav=AfYus-nMA47zRbeJyitQnoGtckYCv-eXFIC_xJ0lJgrzLbBrSH8YnPqI33nW7-RTxWA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Riccardo Chiarini,,2019-05-18,2,Spero che da ora meno polemiche e più fatti. L'Italia è stufa di questa società,/riccardo.chiarini.98?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=160&av=100013534782121&eav=AfYus-nMA47zRbeJyitQnoGtckYCv-eXFIC_xJ0lJgrzLbBrSH8YnPqI33nW7-RTxWA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anita Pacini,,2019-05-18,3,"Un pomeriggio di pioggia,ma a Milano c'era il sole dell'Italia!",/profile.php?id=100009663493422&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=160&av=100013534782121&eav=AfYus-nMA47zRbeJyitQnoGtckYCv-eXFIC_xJ0lJgrzLbBrSH8YnPqI33nW7-RTxWA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Dosso,,2019-05-18,3,Forza Matteo..metti la giacca che te ciapet ul frecc👏👏👏,/profile.php?id=100005941515261&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=160&av=100013534782121&eav=AfYus-nMA47zRbeJyitQnoGtckYCv-eXFIC_xJ0lJgrzLbBrSH8YnPqI33nW7-RTxWA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Socci,,2019-05-18,6,Grazie Matteo ...ho seguito tutto...che la Madonnina ti protegga sempre !!,/paola.socci.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=160&av=100013534782121&eav=AfYus-nMA47zRbeJyitQnoGtckYCv-eXFIC_xJ0lJgrzLbBrSH8YnPqI33nW7-RTxWA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorena Valmassoni,,2019-05-18,3,"Non ho potuto esserci,ma vi ho pensato tanto !!! Sempre dalla tua parte Capitano ! ❤",/lorena.valmassoni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=160&av=100013534782121&eav=AfYus-nMA47zRbeJyitQnoGtckYCv-eXFIC_xJ0lJgrzLbBrSH8YnPqI33nW7-RTxWA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michele Romaniello,,2019-05-18,3,Carissimo Matteo l’Italia aspetta di vedere il cambiamento. Forza Lega forza Salvini,/michele.romaniello?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=160&av=100013534782121&eav=AfYus-nMA47zRbeJyitQnoGtckYCv-eXFIC_xJ0lJgrzLbBrSH8YnPqI33nW7-RTxWA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sergio Virzi,,2019-05-18,3,"Caro ministro; butta fuori dal tuo partito i corrotti, dai un segnale al popolo italiano che la politica e cambiata...",/sergio.virzi.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=160&av=100013534782121&eav=AfYus-nMA47zRbeJyitQnoGtckYCv-eXFIC_xJ0lJgrzLbBrSH8YnPqI33nW7-RTxWA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Mulas,ROOT,2019-05-18,4,Spettacolo!! Ti vogliamo con Giorgia ... molla il bibitarooooo,/daniela.mulas?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301906414031838&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBhRqZi989EJTty&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annita Terruli,Daniela Mulas,2019-05-18,,Daniela Mulas e Giorgia nn mollera mai i vitalizzi hahaha,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301906414031838&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBhRqZi989EJTty&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annita Terruli,Daniela Mulas,2019-05-18,,ANDATE A FUNGHI,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301906414031838&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBhRqZi989EJTty&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniela Mulas,Daniela Mulas,2019-05-18,1,Annita Terruli vitalizi non vitalizzi ... ma che te lo dico a fare... i pentastellati litigano sempre con la grammatica 🤣🤣🤣🤣dai su fai un favore all’Italia ... torna a scuola e non scartavetrarmi i maroni,/daniela.mulas?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301906414031838&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBhRqZi989EJTty&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Bonacina,ROOT,2019-05-18,2,"Serum in quater...quater Malnat Milano grande città, Salvini non ti vogliamo!!",/profile.php?id=100004485288239&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxdjpFZpM4rk1V&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucrezia Sonja Dalla Rosa,Paola Bonacina,2019-05-18,,Paola Bonacina non ti sforzare siamo moltissimi a volerlo a Milano e in tuttaItalia ....TU SEI SOLO UNA POVERA ZECCA .....,/lucreziasonjaDRG?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxdjpFZpM4rk1V&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ottavia Frasconi,Paola Bonacina,2019-05-18,,Paola Bonacina pazienza non ci siete soli voi!,/ottavia.frasconi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxdjpFZpM4rk1V&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Casimiro Frangella,Paola Bonacina,2019-05-18,,"Vai all'altra manifestazione, se questa non ti piace! Non c'è nessuno?",/casimirosettimio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxdjpFZpM4rk1V&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniela Chiorboli,Paola Bonacina,2019-05-18,1,"Mi scusi Signora, ma lei non sa proprio contare!!! Mi dispiace per lei!😜",/daniela.chiorboli.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxdjpFZpM4rk1V&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nazareno Reno Pistone,Paola Bonacina,2019-05-18,1,zecca sei,/nazzareno.pistone?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxdjpFZpM4rk1V&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Bonacina,Paola Bonacina,2019-05-18,,"Lucrezia Sonja Dalla Rosa Bolzano, vero? 😂😂",/profile.php?id=100004485288239&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxdjpFZpM4rk1V&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolo Carozzi,Paola Bonacina,2019-05-18,1,Voi eravate in 4 cani a rosikare ora con i vostri lenzuoli pulisciti il culo,/paolo.carozzi.121?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxdjpFZpM4rk1V&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Bonacina,Paola Bonacina,2019-05-18,,Paolo Carozzi che eleganza 😀,/profile.php?id=100004485288239&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxdjpFZpM4rk1V&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luciana Boniforti,Paola Bonacina,2019-05-18,,"Daniela Chiorboli al di la che dubito sappiano fare di conti, ma sono ormai abituati a vedere 10 sedie su 20 occupate nei loro comizi, e che nn abbiamo potuto partecipare tutti",/luciana.boniforti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxdjpFZpM4rk1V&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luciana Boniforti,Paola Bonacina,2019-05-18,,"sanno solo offendere perche' nn hanno argomenti intelligenti da fare, poveri tapini pidioti..",/luciana.boniforti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBxdjpFZpM4rk1V&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matteo Casiraghi,ROOT,2019-05-18,5,Che magia ombrelli aperti e foto panoramica. Ero in Piazza con amici per altri motivi.. Mezza vuota. Il 25 Aprile e con gli Alpini .. Il triplo delle Persone. Mamma mia.. Poca roba,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&count=45&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD3EJjF13GTK9eH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Corrado Lippi non canto né rosico. Ben altre gioie,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&count=45&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD3EJjF13GTK9eH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Corrado Lippi,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&count=45&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD3EJjF13GTK9eH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Maria Cristina Lasagni,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&count=45&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD3EJjF13GTK9eH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Corrado Lippi le foto frontali.. Riempono anche il buco nero,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&count=45&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD3EJjF13GTK9eH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Corrado Lippi,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&count=45&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD3EJjF13GTK9eH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Andrea Agostini peccato che i miei furono uccisi a Milano combattendo da partigiani.. Ed altri deportati. Sui monti si nascose uno solo.. Vestito da tedesco.. Da vile e codardo.. Ma a Dongo lo trovarono,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&count=45&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD3EJjF13GTK9eH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giacomino Peli,Matteo Casiraghi,2019-05-18,1,"Matteo Casiraghi hai fatto la magia,hai cancellato gli ombrelli🤣😆🤣",/profile.php?id=100009322441193&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&count=45&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD3EJjF13GTK9eH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Giacomino Peli mica sono un fotografo.,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&count=45&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD3EJjF13GTK9eH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Agostini,Matteo Casiraghi,2019-05-18,,2 partigiani in meno 😁,/AndreaAgostiniMoto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&count=45&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD3EJjF13GTK9eH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Wing Chun,Paola Bonacina,2019-05-18,1,Sei solo e circondato,/wing.chun.543908?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&p=10&count=13&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAievSqO-9r02Eo +Lucrezia Sonja Dalla Rosa,Paola Bonacina,2019-05-18,,Ma VaTTINEEEE,/lucreziasonjaDRG?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&p=10&count=13&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAievSqO-9r02Eo +Ania Aglie,Paola Bonacina,2019-05-18,,"Parla al singolare tu non lo vorrai ,!!!...?.",/luigi.nagliero?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_590877278101397&p=10&count=13&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAievSqO-9r02Eo +Lucia Guerini,Matteo Casiraghi,2019-05-18,2,Matteo Casiraghi mi dispiace c ontraddirla ma la diretta era uno spettacolo .....,/lucia.guerini.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=10&count=45&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC_1hPhAmHLpbkP +Miky Mazza,Matteo Casiraghi,2019-05-18,1,Ma vi siete fermati a 70 anni fa? 25 aprile ...resistenza....il mondo è cambiato ancora con la storia del fascismo che incombe. Ma secondo lei è possibile che non si possa esprimere una idea politica differente da quella di sinistra senza essere additati per razzisti xenofobi ecc.? Bisognerebbe analizzare i contenuti politici non le ideologie.,/miky.mazza.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=10&count=45&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC_1hPhAmHLpbkP +Andrea Agostini,Matteo Casiraghi,2019-05-18,1,"No caro mio, furono cacciati da Americani ed inglesi, i tuoi nonni non i miei di sicuro son stati nascosti sui monti a rubare e stuprare fino a che non era finita e potevano uscire e proclamarsi eroi da soli.",/AndreaAgostiniMoto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=10&count=45&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC_1hPhAmHLpbkP +Corrado Lippi,Matteo Casiraghi,2019-05-18,2,Matteo Casiraghi con la barbetta sei meno macho. E non sai contare. Non eravate un milione. Eravate un miliardo. Ahahah,/corrado.lippi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=10&count=45&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC_1hPhAmHLpbkP +Loreta Cappelletto,Matteo Casiraghi,2019-05-18,,Probabilmente lei ha sbagliato piazza,/loreta.cappelletto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=10&count=45&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC_1hPhAmHLpbkP +Corrado Lippi,Matteo Casiraghi,2019-05-18,3,Matteo Casiraghi prova a contare anche qui.,/corrado.lippi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=10&count=45&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC_1hPhAmHLpbkP +Corrado Lippi,Matteo Casiraghi,2019-05-18,3,E qui,/corrado.lippi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=10&count=45&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC_1hPhAmHLpbkP +Corrado Lippi,Matteo Casiraghi,2019-05-18,3,E poi anche qui,/corrado.lippi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=10&count=45&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC_1hPhAmHLpbkP +Corrado Lippi,Matteo Casiraghi,2019-05-18,3,Matteo Casiraghi. Con questo basta. Tu puoi continuare a contare e a rosicare. A bello ciao ciao ciao.,/corrado.lippi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=10&count=45&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC_1hPhAmHLpbkP +Maria Cristina Lasagni,Matteo Casiraghi,2019-05-18,1,"Matteo Casiraghi la foto che gira é di diverse ore prima della manifestazione. Per chi non é cieco, si vede benissimo che il palco é ancora vuoto.",/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=10&count=45&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQC_1hPhAmHLpbkP +Travaglini Duchessa,Matteo Casiraghi,2019-05-18,2,Matteo Casiraghi forse le foto che ha fatto erano prima della manifestazione,/duchessa.travaglini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=20&count=45&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAXTTClZxi3PTv3 +Travaglini Duchessa,Matteo Casiraghi,2019-05-18,,Infatti il palco è vuoto,/duchessa.travaglini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=20&count=45&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAXTTClZxi3PTv3 +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Corrado Lippi 19 febbraio 2019 Cgil Cisl Uil Roma.. 1.000.000 di persone. Io ero presente. So bene riconoscere le Piazze.. Ci sto con la Cgil da 35 anni. Non come quelli che son leoni da tastiere.,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=20&count=45&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAXTTClZxi3PTv3 +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=20&count=45&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAXTTClZxi3PTv3 +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Allegri Ciclone Yeuup Gianluca e quindi? La Piazza era Piena..? Io sono passato alla fine del Comizio.. Non mi pareva per nulla. Altro che 25 aprile ed Alpini,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=20&count=45&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAXTTClZxi3PTv3 +Allegri Ciclone Yeuup Gianluca,Matteo Casiraghi,2019-05-18,1,Matteo Casiraghi 😂😂😂la foto era sul web già alle 13....il corteo ancora non era partito!!!!,/gianluca.allegri.92?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=20&count=45&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAXTTClZxi3PTv3 +Giuseppe Corazzina,Matteo Casiraghi,2019-05-18,3,"Sarai andato ieri sera mi sa🤣🤣.... Meno male che esiste internet. Rassegnati, il 26 è vicino😉",/giuseppe.corazzina?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=20&count=45&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAXTTClZxi3PTv3 +Allegri Ciclone Yeuup Gianluca,Matteo Casiraghi,2019-05-18,1,Matteo Casiraghi 😂😂😂,/gianluca.allegri.92?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=20&count=45&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAXTTClZxi3PTv3 +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,1,Giuseppe Corazzina poi arriva il 27. E quindi? Menomale anche il 25 aprile. Che ci ricorda chi siamo. E molte forze politiche europee presenti a Milano.. Furono cacciate dal nostro Paese. Complimenti per aver ridato fiato in casa nostra a coloro che furono cacciati dai nostri nonni.,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=20&count=45&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAXTTClZxi3PTv3 +Emiliano Bruni,ROOT,2019-05-18,3,5 stalle non sono un partito serio la Lega si e io sono fiero di essere Leghista del buon senso e della buona volontà,/emiliano.brunitorcida?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366818467511596&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQADqxpP1TI-lsgc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Bruschi Raniero,Emiliano Bruni,2019-05-18,,Emiliano Bruni difatti rubano,/bruschi.raniero?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366818467511596&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQADqxpP1TI-lsgc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,"Allegri Ciclone Yeuup Gianluca anche quella che ho messo é una immagine. Ogni Manifestazione é Democrazia. Considerando le forze politiche in campo da tutta Europa e la previsione di ""invasione sovranista a Milano""... Veramente poca roba. Tutto qui. E la partecipazione non corrisponde mai al consenso elettorale. Basta vedere la DC",/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=30&count=45&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA26mmddJroBGs9 +Zogno Angi,Matteo Casiraghi,2019-05-18,2,Matteo Casiraghi ma stai almeno zitto ...io ero li 😂😂😂😂😂😂😂e la piazza era STRAPIENA,/zogno.angi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=30&count=45&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA26mmddJroBGs9 +Fortuna De Santis,Matteo Casiraghi,2019-05-18,,Io ero a Como il 1 aprile. La piazza piena e lo stesso dicevano che era semivuota,/fortuna.desantis?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=30&count=45&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA26mmddJroBGs9 +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Jessica Rapetti non mi pare. E comunque poco interessa. Mi permettevo di osservare che la Fotografia era chiaramente finalizzata ad altro.. Altrimenti si sarebbe fatta una panoramica aerea,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=30&count=45&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA26mmddJroBGs9 +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Gilda Tufarulo appunto. Evidenza,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=30&count=45&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA26mmddJroBGs9 +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Zogno Angi stai zitto .. Penso si usi per gli animali. Ma tant'è.. L'educazione es il rispetto.. Non tutti i Genitori hanno avuto tempo di insegnarle,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=30&count=45&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA26mmddJroBGs9 +Anna Proserpio,Matteo Casiraghi,2019-05-18,,Matteo Casiraghi eri in piazza col tuo cane guida?,/anna.proserpio.33?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=30&count=45&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA26mmddJroBGs9 +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Anna Proserpio complimenti. Ha forse idea dei drammi di coloro non vedenti.. Per divertirsi nel deriderli? Provasse lei. Ma educazione e rispetto.. Sa cosa significano?,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=30&count=45&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA26mmddJroBGs9 +Corrado Lippi,Matteo Casiraghi,2019-05-18,1,Matteo Casiraghi mi mandi le foto delle manifestazioni Cgil di 35 anni fa o quelle delle riunioni Cgil di oggi?,/corrado.lippi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=30&count=45&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA26mmddJroBGs9 +Allegri Ciclone Yeuup Gianluca,Matteo Casiraghi,2019-05-18,5,Matteo Casiraghi 😂😂questa foto è stata scattata due ore prima😂😂del corteo!! Girava sul web alle 13,/gianluca.allegri.92?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=30&count=45&pc=4&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQA26mmddJroBGs9 +Allegri Ciclone Yeuup Gianluca,Matteo Casiraghi,2019-05-18,1,Matteo Casiraghi dalle immagini TV non sembra quello che dici....,/gianluca.allegri.92?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=40&count=45&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDi00k-Ao4jaan1 +Corrado Lippi,Matteo Casiraghi,2019-05-18,1,Matteo Casiraghi quasi come alle riunioni della Cgil. Ahahah,/corrado.lippi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=40&count=45&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDi00k-Ao4jaan1 +Matteo Casiraghi,Matteo Casiraghi,2019-05-18,,Corrado Lippi si chiamano Manifestazioni. E se vuoi ti mando alcune foto.. Quindi? Per curiosità.. Cosa c'entra la Cgil?,/matteo.casiraghi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=40&count=45&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDi00k-Ao4jaan1 +Jessica Rapetti,Matteo Casiraghi,2019-05-18,,Matteo Casiraghi durante la diretta si vedeva la marea di gente. Magari lei era lì in momento differente.,/jessica.rapetti.7503?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=40&count=45&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDi00k-Ao4jaan1 +Gilda Tufarulo,Matteo Casiraghi,2019-05-18,2,Matteo Casiraghi Anche davanti all'evidenza eh!,/gilda.tufarulo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622531878155&p=40&count=45&pc=5&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQDi00k-Ao4jaan1 +Savino Trocchia,ROOT,2019-05-18,3,Forza capitano e grande anche il brano 💪💪 #il26maggiovotolega,/savino.trocchia?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325212714821115&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCLO_NkIuffUB9q&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Nina Caravaggio,Savino Trocchia,2019-05-18,,Nessun dorma di Giacomo Puccini dalla Turandot!! Bellissima!!,/nina.caravaggio.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325212714821115&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCLO_NkIuffUB9q&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Perna Ciro,,2019-05-18,3,Matteo non fermarti e non ti fare abbattere da nessuno io sono con te forza capito,/perna.ciro.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=170&av=100013534782121&eav=AfY-pxokzWbLXwJdFhApPft_799mP-nKpIpSzFiMgAYSn4O0fGASjTAW2QaARkI1P_I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristian Katy Ziviani Ferrigato,,2019-05-18,3,"Presenti, quando si sente parlare il capitano , l’entusiasmo è’ alle stelle",/cristiankaty.zivianiferrigato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=170&av=100013534782121&eav=AfY-pxokzWbLXwJdFhApPft_799mP-nKpIpSzFiMgAYSn4O0fGASjTAW2QaARkI1P_I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fulvio Alvisini,,2019-05-18,3,Grande Matteo tutti insieme libereremo il nostro paese e torneremo padroni a casa nostra💚💚💚,/fulvio.alvisini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=170&av=100013534782121&eav=AfY-pxokzWbLXwJdFhApPft_799mP-nKpIpSzFiMgAYSn4O0fGASjTAW2QaARkI1P_I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesco Dieni,,2019-05-18,3,"matteo salvini = segno di civiltà,self con extracomunitario,e canzoni a palla di giovanotti colui che parla male di lui in tv .ORA O MAI PIù FORZA SALVINI.",/francesco.dieni.18?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=170&av=100013534782121&eav=AfY-pxokzWbLXwJdFhApPft_799mP-nKpIpSzFiMgAYSn4O0fGASjTAW2QaARkI1P_I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Calati,,2019-05-18,3,Matteo io non c'ero ma ho seguito tutto in diretta Facebook non mollare e stai attento ai mafiosi non lasciarci auguri ciaone,/maurizio.calati.14?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=170&av=100013534782121&eav=AfY-pxokzWbLXwJdFhApPft_799mP-nKpIpSzFiMgAYSn4O0fGASjTAW2QaARkI1P_I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Zuanetti,,2019-05-18,3,"Mentre gli altri continuano a offendere..perché non sanno fare altro,nella loro pochezza",/emanuela.zuanetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=170&av=100013534782121&eav=AfY-pxokzWbLXwJdFhApPft_799mP-nKpIpSzFiMgAYSn4O0fGASjTAW2QaARkI1P_I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Iommazzo,,2019-05-18,2,"Ti voglio bene..grazie per quota 100,per aver messo questi posti a disposizione della mobilità docenti..vedo la speranza di tornare a casa..grazie a nome di tutti i docenti esiliati dalla 107",/paola.iommazzo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=170&av=100013534782121&eav=AfY-pxokzWbLXwJdFhApPft_799mP-nKpIpSzFiMgAYSn4O0fGASjTAW2QaARkI1P_I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesco Cappuccino,ROOT,2019-05-18,4,"So un botto grandi gli ombrelli oh e poi stranamente è un po’ sfocata, com’è?",/francesco.cappuccino?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622526113155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDbHJcXRLWCM44h&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Habiba Manaa,Francesco Cappuccino,2019-05-18,1,Francesco Cappuccino io volevo il dibattito con Carlo Calenda...uffi! Secondo me erano venute per questo!,/habiba.manaa.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622526113155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDbHJcXRLWCM44h&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mattia Parmàt Parrino,Francesco Cappuccino,2019-05-18,,"Magari si sono portati degli ombrelloni formato famiglia, cosa ne sai? u.u",/mattia.parrino.99?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622526113155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDbHJcXRLWCM44h&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giovanna Palombo,Francesco Cappuccino,2019-05-18,,"Francesco Cappuccino tu hai la vista sfuocata, bevi meno",/giovanna.palombo.90?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622526113155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDbHJcXRLWCM44h&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Giammaria,Francesco Cappuccino,2019-05-18,,Francesco Cappuccino ha piovuto solo alla fine pirletta,/silvana.giammaria?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622526113155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDbHJcXRLWCM44h&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Francesco Cappuccino,Francesco Cappuccino,2019-05-18,1,"Al limite *è piovuto, però non riesco proprio a seguire la logica di ciò che scrivete, sembra una specie di delirio",/francesco.cappuccino?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622526113155&count=7&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDbHJcXRLWCM44h&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Walter Paolo Pozzi,,2019-05-18,4,"Le TV lo censurano ! Bene, noi faremo altrettanto con loro ,non guardando più le loro trasmissioni . E x fortuna dovremmo essere in democrazia...si quella rossa !",/walter.paolo.pozzi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=70&av=100013534782121&eav=AfbkdjXCMVi5dL1uNgq8goHluOsvL04A3t267g7FAfJ5E0n-TGeCbQrrc7Xb0dcAdLQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Donatella Galasso,,2019-05-18,23,Era il minimo che poteva essere.....,/donatella.galasso.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=70&av=100013534782121&eav=AfbkdjXCMVi5dL1uNgq8goHluOsvL04A3t267g7FAfJ5E0n-TGeCbQrrc7Xb0dcAdLQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alex Stretta,,2019-05-18,4,"Grandissimo Salvini , i TG non ti hanno neanche dedicato un secondo .....forza LEGA immenso Salvini",/alex.stretta?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=70&av=100013534782121&eav=AfbkdjXCMVi5dL1uNgq8goHluOsvL04A3t267g7FAfJ5E0n-TGeCbQrrc7Xb0dcAdLQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary Pau,,2019-05-18,4,Sei il.numero.uno Matteo Noi italiani ti amiamo Grazie di esistere Un abbraccio dal.Isola di sant.antioco Sardegna,/mery.pau.77?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=70&av=100013534782121&eav=AfbkdjXCMVi5dL1uNgq8goHluOsvL04A3t267g7FAfJ5E0n-TGeCbQrrc7Xb0dcAdLQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Margherita Spagnolo,,2019-05-18,4,Salvini sei grande io sono orgogliosa di te forza per Italia e italiani buon lavoro,/margherita.spagnolo.927?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=70&av=100013534782121&eav=AfbkdjXCMVi5dL1uNgq8goHluOsvL04A3t267g7FAfJ5E0n-TGeCbQrrc7Xb0dcAdLQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nardi Simone,ROOT,2019-05-18,2,Forza capitano sicurezza e onesta barra a dritta e spazza via tutto il marcio che c’è in Italia!!!!!!!!!,/nardi.simone.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145665533155068&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD4KPaLq4WXiLge&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Nardi Simone,2019-05-18,,é un peracottaro,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145665533155068&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD4KPaLq4WXiLge&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mariana Mariana,ROOT,2019-05-18,4,"Meraviglioso anche il tempo si è cambiato, non piove più!!!!! Complimenti, ti adoriamo Salvini 👍👍👍👍👍👍❤️",/mariana.benea.33?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622539888155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBsCH2Zuc3zTk0o&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosella Alessandri,Mariana Mariana,2019-05-18,,"Mariana Mariana grazie S.Ambrogio...hai fatto il miracolo,non piove più 😂😂😂",/rosella.alessandri?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622539888155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBsCH2Zuc3zTk0o&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Armando Degli Effetti,ROOT,2019-05-18,2,anche noi ...la tua felicità e entusiasmo è anche il nostro! finalmenete,/ArmandoDegliEffetti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407411340101042&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDnPh-R69sTGipH&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Armando Degli Effetti,2019-05-18,,tutto fasullo,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407411340101042&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDnPh-R69sTGipH&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giancarlo Contarino,,2019-05-18,4,"Che spettacolo, folla oceanica. W la Lega, W Salvini.",/profile.php?id=100009471039173&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=80&av=100013534782121&eav=Afb8h-JZrUWaVGWlP_I76SujiDXt-vDQYu4naKYWGTSltSnnEz8bqzvzATI-SP3AP_g&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianni Ferrero,,2019-05-18,5,Bellissima giornata passata in piazza del Duomo. Piazza strapiena di tanta brava gente venuta da tutta Italia.,/gianni.ferrero.395?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=80&av=100013534782121&eav=Afb8h-JZrUWaVGWlP_I76SujiDXt-vDQYu4naKYWGTSltSnnEz8bqzvzATI-SP3AP_g&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonello Cau,,2019-05-18,3,I delinquenti veri in questo paese sono i comunisti e i cattocomunisti.,/Lellocau?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=80&av=100013534782121&eav=Afb8h-JZrUWaVGWlP_I76SujiDXt-vDQYu4naKYWGTSltSnnEz8bqzvzATI-SP3AP_g&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Policastro,,2019-05-18,4,Non avevo dubbi... questa è l'Italia vera e onestà!tutto ciò che c'era prima non ci appartiene,/profile.php?id=1629372796&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=80&av=100013534782121&eav=Afb8h-JZrUWaVGWlP_I76SujiDXt-vDQYu4naKYWGTSltSnnEz8bqzvzATI-SP3AP_g&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Federico Piola,,2019-05-18,5,Speriamo anche nella cabina elettorale. Avanti capitano,/federico.piola.77?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=80&av=100013534782121&eav=Afb8h-JZrUWaVGWlP_I76SujiDXt-vDQYu4naKYWGTSltSnnEz8bqzvzATI-SP3AP_g&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Davide Soncin,,2019-05-18,3,"È stato bellissimo, tutti sotto la pioggia per la nostra italia. Mentre ti ascoltavo pensavo noi abbiamo salvini gli altri il nulla cosmico",/davide.soncin.39?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=80&av=100013534782121&eav=Afb8h-JZrUWaVGWlP_I76SujiDXt-vDQYu4naKYWGTSltSnnEz8bqzvzATI-SP3AP_g&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Diego Pisano,,2019-05-18,4,Usciamo da questa Europa ministro e tutta una presa per il culo dal primo giorno 💪💪,/diego.pisano.31?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=80&av=100013534782121&eav=Afb8h-JZrUWaVGWlP_I76SujiDXt-vDQYu4naKYWGTSltSnnEz8bqzvzATI-SP3AP_g&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Eleonora Marino,,2019-05-18,4,SIAMO FIERI DI LEI MINISTRO SALVINI...SEMPRE AVANTI PER UNA NUOVA EUROPA!!!,/eleonora.martino.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=80&av=100013534782121&eav=Afb8h-JZrUWaVGWlP_I76SujiDXt-vDQYu4naKYWGTSltSnnEz8bqzvzATI-SP3AP_g&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Paola Cecconi,,2019-05-18,3,Persino fb fa fatica a caricare il video... la paura serpeggia nella sinistra...,/Paolacecconi54?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=80&av=100013534782121&eav=Afb8h-JZrUWaVGWlP_I76SujiDXt-vDQYu4naKYWGTSltSnnEz8bqzvzATI-SP3AP_g&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Agnès Carbo,ROOT,2019-05-18,3,Lui ha le palle perché prende tantissimi rischi e non ème tanto prottetto.,/profile.php?id=100028651232996&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874198244451&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAgXCG1n7s_EKfd&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alessandro Barbieri,Agnès Carbo,2019-05-18,,"Si a parole, prende i rischi poi si nasconde diciotti ecc.",/profile.php?id=100005089517447&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425874198244451&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAgXCG1n7s_EKfd&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simone Poetto,ROOT,2019-05-18,7,"""capitano"" hai paura delle opinioni di chi non è d'accordo con te? Codardo... Noi non abbiamo paura dei tuoi metodi fascisti. #toglianchequesti",/simone.poetto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622544428155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCCy9AwznS5J-Tg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolo Santoro,Simone Poetto,2019-05-18,1,Simone Poetto finita la pacchia pure per te,/paolo.santoro.169?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622544428155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCCy9AwznS5J-Tg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Terry Fra,Simone Poetto,2019-05-18,,Simone Poetto stai zitto IMBECILLE e CODARDO Saraiiiii tuuuuuuuuu,/terry.fra.77?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622544428155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCCy9AwznS5J-Tg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuliano Dan,Simone Poetto,2019-05-18,1,Simone Poetto,/giuly.dan?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622544428155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCCy9AwznS5J-Tg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Manu Unam,ROOT,2019-05-18,4,Mancava un capo per risvegliare l orgoglio di essere ITALIANI il 26 maggiovot e fai votare salvini,/manu.unam.5209?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145667196488235&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCWxvYgEUtUTooA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Manu Unam,2019-05-18,,"a te mancano molte rotelle,altro che un capo",/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145667196488235&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCWxvYgEUtUTooA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luigi Brodoloni,ROOT,2019-05-18,3,I soliti 4 sfigatti......🤣 È lì commento più simpatico che ho visto .... Ma quanto erano grossi sti gatti da riempire piazza Duomo??,/luigi.brodoloni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265840207002442&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAfXMHIfSf1S-D2&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Luigi Brodoloni,2019-05-18,1,Luigi Brodoloni ma 😂 andate tutti dall' oculista che vi siete accecati dalla ....RABBIA !! 😠😂😂😂 SALVINI E LEGA FOREVER👏👏👏👏👏👏👏💚💖🍾🍾🍾🍾🍾🍾,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265840207002442&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAfXMHIfSf1S-D2&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luigi Brodoloni,Luigi Brodoloni,2019-05-18,1,Emily Ronny stanno rosicando.... 😂 è più rosicano più insultano è più insultano più Salvini cresce!!! 👍,/luigi.brodoloni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265840207002442&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAfXMHIfSf1S-D2&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giulio Renga,ROOT,2019-05-18,5,E la proma volta che mi escono le lacrime in tanti anni vedendo Matteo salvini sei il nostro salvatore,/giulio.renga.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_641993409597497&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAEPMtuGDZRZY_1&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luigia Pietrosanti,Giulio Renga,2019-05-18,,Vero,/luigia.pietrosanti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_641993409597497&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAEPMtuGDZRZY_1&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Calogero Caldarera,ROOT,2019-05-18,3,Alle TV non dicono nulla e se dicono qualcosa diranno .... Si è no tremila persone in tutto 😂😂 Rosicate sinistronzi ebeti. W la lega 💚💚💚,/calogero.caldarera?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622533253155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCjWX9VKlg4kF60&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Angela Anzalone,Calogero Caldarera,2019-05-18,,Calogero Caldarera Devi vedere quando ti dovrai nascondere!!,/profile.php?id=100013485762681&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622533253155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCjWX9VKlg4kF60&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Michaela Lav,,2019-05-18,2,Forza!! Non lasciamoci abbattere da queste sinistre che vogliono un Paese abbattuto è servo della UE,/michaela.lav?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=180&av=100013534782121&eav=AfbvmrJv7h3XRnQ3d9n9QVbjImthYInBTXGwI92ATqgaXONM4kWvv-darQPgDrMVDJ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvia Aldini,,2019-05-18,2,... e c’è sempre l’Italia a rompere le uova nel paniere alla Germania ... yessa,/silvia.aldini.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=180&av=100013534782121&eav=AfbvmrJv7h3XRnQ3d9n9QVbjImthYInBTXGwI92ATqgaXONM4kWvv-darQPgDrMVDJ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,2,Bellissima Milano e chissà se ci sono anche i miei cugini paterni lì a vederti,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=180&av=100013534782121&eav=AfbvmrJv7h3XRnQ3d9n9QVbjImthYInBTXGwI92ATqgaXONM4kWvv-darQPgDrMVDJ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Guerrasio,,2019-05-18,2,"Ministro a casa il bibitaro,e avanti tutta a dritta. Ma le tv dove sono tutti spariti???",/anna.guerrasio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=180&av=100013534782121&eav=AfbvmrJv7h3XRnQ3d9n9QVbjImthYInBTXGwI92ATqgaXONM4kWvv-darQPgDrMVDJ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Valtiero Pancisi,,2019-05-18,2,Stanno boiconttando in tutte le maniere .Salvini è uno di noi chi lo boicotta e un totalitarista !fasciocomunista !,/profile.php?id=100008704758228&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=180&av=100013534782121&eav=AfbvmrJv7h3XRnQ3d9n9QVbjImthYInBTXGwI92ATqgaXONM4kWvv-darQPgDrMVDJ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigi Parmigiani,,2019-05-18,4,"Il PD deve fare 8000 comizi per radunare forse solo la metà di quelli che oggi erano on piazza Duomo e, udite udite, senza casini vandalismi e violenze come succede sempre ai raduni della sinistra....",/luigi.parmigiani.750?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=90&av=100013534782121&eav=AfanIv60_CaH4iKNr3NIz_qD96gT7eHH6azGwDfta17e5gBeTTpF7Xz5e0NP74WwXnc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pina Fasano,,2019-05-18,5,Grandi tutti......Questi sono i ministri che vogliamo in Europa....Tutti da pelle d'oca. ...A parte il nostro Capitano la Le Pen.....Da brivido....!!!!,/pina.fasano?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=90&av=100013534782121&eav=AfanIv60_CaH4iKNr3NIz_qD96gT7eHH6azGwDfta17e5gBeTTpF7Xz5e0NP74WwXnc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carlo Spreafico,,2019-05-18,21,GRANDE MATTEO SIAMO TUTTI CON TE CIAO.,/carlo.spreafico.73?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=90&av=100013534782121&eav=AfanIv60_CaH4iKNr3NIz_qD96gT7eHH6azGwDfta17e5gBeTTpF7Xz5e0NP74WwXnc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stella Leprottini,,2019-05-18,3,"Matteo, sei GRANDE!! Solo tu puoi salvare questo paese alla deriva. Danno la colpa a te di tutti i danni che hanno combinato loro in questi anni di malgoverno. Ma tutto lascia sperare che il 27 maggio si possa respirare un po' di aria nuova. I cinque stelle si dovrebbero vergognare per la pochezza politica da dilettanti allo sbaraglio che hanno dimostrato fino adesso. Solo la Meloni può esserti leale. Viva F.I. e viva Lega!",/stella.leprottini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=90&av=100013534782121&eav=AfanIv60_CaH4iKNr3NIz_qD96gT7eHH6azGwDfta17e5gBeTTpF7Xz5e0NP74WwXnc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandra Bartoli,,2019-05-18,5,Che spettacolo. Salvi i riesce a rendere una manifestazione un momento magico💚💚💚,/alessandra.bartoli.391?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=90&av=100013534782121&eav=AfanIv60_CaH4iKNr3NIz_qD96gT7eHH6azGwDfta17e5gBeTTpF7Xz5e0NP74WwXnc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ferrari Margherita,,2019-05-18,3,Contenti pidiniani e pentastellati del menga l'invidia è una brutta bestia e voi ne avete tanta,/profile.php?id=100008773294677&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=90&av=100013534782121&eav=AfanIv60_CaH4iKNr3NIz_qD96gT7eHH6azGwDfta17e5gBeTTpF7Xz5e0NP74WwXnc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Manuela Borgogelli,,2019-05-18,5,Una piazza così solo Salvini la poteva fare !!!!Grande Ministro,/manuela.borgogelli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=90&av=100013534782121&eav=AfanIv60_CaH4iKNr3NIz_qD96gT7eHH6azGwDfta17e5gBeTTpF7Xz5e0NP74WwXnc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luca Gusella,ROOT,2019-05-18,2,"L’altro Matteo avrebbero dovuto portarlo via con la scorta!!! Grande, mi raccomando avanti con 5⭐️",/gusellaluca?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411738368849232&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCtDg8NyQnPqrsn&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Luca Gusella,2019-05-18,,"eccerto.Questo,invece,fa solo.demagogia e populismo,racconta una marea di frottole per incantare ste masse di decerebrati",/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411738368849232&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCtDg8NyQnPqrsn&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luca Gusella,Luca Gusella,2019-05-18,,Giangiacomo Carretta libero di pensare come desideri si chiama democrazia,/gusellaluca?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411738368849232&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCtDg8NyQnPqrsn&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cristian Gaglio,ROOT,2019-05-18,3,Posso dire solo....... Alla faccia di chi ci vuole male...... w il nostro Capitano,/cristian.gaglio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301906960698450&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDDYVyMQozf7uMs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Antonio Cirillo,ROOT,2019-05-18,2,Matteo attento alle mele marce quelli sono la rovina del partito ... Vai avanti così siamo tutti con te,/antonio.cirillo.90281943?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145664616488493&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDY4RcWcgWsVGGO&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna Berardo,Antonio Cirillo,2019-05-18,,si spera per poco 😃😃,/anna.berardo.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145664616488493&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDY4RcWcgWsVGGO&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Riccardo Quacquarelli,ROOT,2019-05-18,3,".... continuate a portare in italia delinquenti per farvi stuprare e ammazzarvi in casa vostra ...... protestate invece chi vi ha rubato da 20 anni e fatte le guerre in africa per importare gente ed abbassare il costo del lavoro oltre ai crimini che commettono..... i miei amici africani, quelli onesti , sono con me quando dico questo e che è ora di eliminare , politicamente , tutti politici , centri sociali ed altri che ci hanno portato a questo degrado . Che cavolo centra Salvini col decreto sicurezza se da 20 anni circa la sinistra con le loro politiche per dare lavoro ai loro i centri sociali hanno fatto business insieme al Vaticano, Francia ed altri ....",/tvroma1.it?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622540343155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCcHHugvr5weYln&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Angela Anzalone,Riccardo Quacquarelli,2019-05-18,,Riccardo Quacquarelli Farai la fine del polipo...se ti va bene quella di PINOCCHIO,/profile.php?id=100013485762681&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622540343155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCcHHugvr5weYln&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Riccardo Quacquarelli,Riccardo Quacquarelli,2019-05-18,1,"da te??? sai dire solo questo ....??? sono sempre andato alla ricerca dei bulli per darli delle lezioni ..... Protesti contro Prodi , Napolitano , centri sociali e vaticano che ci ha portato a questo ..... io chi entra in casa mia li caccio fuoria modo mio ..",/tvroma1.it?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622540343155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCcHHugvr5weYln&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Eleonora Cardia,,2019-05-18,7,Grazieeee Ministro Matteo Salvini ti meriti tutto il bene del mondo !!!💗💗💗,/MariaEleonora61?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=190&av=100013534782121&eav=Afaih_9_B_6eaSYdq8U69ftzO-K0HdBT72Z99Jf1FZDX129FSh_exWQQvCHSZ6MHpgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Margot Panco,,2019-05-18,,"Tutte e due salvini e alpini, certo che a voi rosiconi vi brucia un po olio di ricino",/margot.panco.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=190&av=100013534782121&eav=Afaih_9_B_6eaSYdq8U69ftzO-K0HdBT72Z99Jf1FZDX129FSh_exWQQvCHSZ6MHpgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary Salvo,,2019-05-18,2,Matteo lavora per tutta l'Italia no dimenticarti del Sud,/salvoemary1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=190&av=100013534782121&eav=Afaih_9_B_6eaSYdq8U69ftzO-K0HdBT72Z99Jf1FZDX129FSh_exWQQvCHSZ6MHpgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mony Faggioli,,2019-05-18,,Fantastici tutti anche i Leaders europeisti...w SALVINI 💚🇮🇹💚🇮🇹💚,/mony.faggioli.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=190&av=100013534782121&eav=Afaih_9_B_6eaSYdq8U69ftzO-K0HdBT72Z99Jf1FZDX129FSh_exWQQvCHSZ6MHpgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,1,Matteo oooooo ti aspettiamo in versilia 5000 l anno scorso 15000 quest anno..,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=190&av=100013534782121&eav=Afaih_9_B_6eaSYdq8U69ftzO-K0HdBT72Z99Jf1FZDX129FSh_exWQQvCHSZ6MHpgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,2,E gli anziani che si raccomandano?? Grazie mille Matteo oooooo dagli ultimi è ancora più bello,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=190&av=100013534782121&eav=Afaih_9_B_6eaSYdq8U69ftzO-K0HdBT72Z99Jf1FZDX129FSh_exWQQvCHSZ6MHpgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +L A Carvalho Beck,,2019-05-18,3,Salute da Brasile !!# Orgoglioso di essere anti comunista...ma sopratutto orgoglioso del ns Matteo salvini💚💚💚💚,/luiz.carvalho.167?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=190&av=100013534782121&eav=Afaih_9_B_6eaSYdq8U69ftzO-K0HdBT72Z99Jf1FZDX129FSh_exWQQvCHSZ6MHpgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luciano Luciana Nerini,,2019-05-18,4,Naturalmente tutti i detrattori diranno che c' erano 4 gatti...i soliti 🤡🤡🤡 ...noi con Salvini...😍😍😍,/luciano.nerini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=190&av=100013534782121&eav=Afaih_9_B_6eaSYdq8U69ftzO-K0HdBT72Z99Jf1FZDX129FSh_exWQQvCHSZ6MHpgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Ripamonti,ROOT,2019-05-18,5,"Anche se sui balconi avete insultato , in piazza Duomo abbiamo applaudito . Libertà di pensiero.",/antonella.ripamonti.33?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543767459363177&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAO73ZfoMKkEYT6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Regina Bosisio,Antonella Ripamonti,2019-05-18,1,Antonella Ripamonti appunto libertà ....perché togliere gli striscioni allora?,/regina.bosisio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543767459363177&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAO73ZfoMKkEYT6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luigi Adamo,ROOT,2019-05-18,,Ma ti hanno spento le sigarette addosso?? Sarà stato qualche comunista!!,/luigi.adamo.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_641991969597641&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDz5U2Zl1ZMsVrz&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucrezia Sonja Dalla Rosa,Luigi Adamo,2019-05-18,,esatto !!!!,/lucreziasonjaDRG?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_641991969597641&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDz5U2Zl1ZMsVrz&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ilaria Maria Grazia Colombo,,2019-05-18,4,"Ho seguito su fb tutta la manifestazione...pagina di storia, un'emozione infinita..GRAZIEEE...💓💓💓",/ilariamariagrazia.colombo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=100&av=100013534782121&eav=Afbhdvm3ol_pKRZZULJXIKU6lYAEaqNeryQcwoy7LdiFTzfpUSt2RGLT7ODT_uLOb48&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelo Silveri,,2019-05-18,4,"Queste sono le vere piazze piene, non quelle falsate dai fotomontaggi...",/angelo.silveri.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=100&av=100013534782121&eav=Afbhdvm3ol_pKRZZULJXIKU6lYAEaqNeryQcwoy7LdiFTzfpUSt2RGLT7ODT_uLOb48&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nicola Sanitate,,2019-05-18,3,È una libidine. Alla faccia di quel traditore di Di Maio.,/nicola.sanitate.35?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=100&av=100013534782121&eav=Afbhdvm3ol_pKRZZULJXIKU6lYAEaqNeryQcwoy7LdiFTzfpUSt2RGLT7ODT_uLOb48&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Katia Murro,,2019-05-18,3,Avanti capitano Salvini abbattiamo l Europa di burocrati .,/katia.murro.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=100&av=100013534782121&eav=Afbhdvm3ol_pKRZZULJXIKU6lYAEaqNeryQcwoy7LdiFTzfpUSt2RGLT7ODT_uLOb48&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Crippa,,2019-05-18,3,Cosa ci fanno gli imbucati di sinistra in questa pagina? Evaporate! Non avete niente di meglio da fare che intrufolarvi in un contesto che non vi si addice. Siete ridicoli. Io voto Lega e non mi sognerei mai di mettere il like ad una pagina di Zingaretti. PATETICI!,/elena.crippa.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=100&av=100013534782121&eav=Afbhdvm3ol_pKRZZULJXIKU6lYAEaqNeryQcwoy7LdiFTzfpUSt2RGLT7ODT_uLOb48&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tommaso Fraioli,,2019-05-18,3,I mezzi di informazione hanno oscurato la manifestazione è una vergogna Nazionale! Forza Capitano! 💪🏼🇮🇹,/tommaso.fraioli.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=100&av=100013534782121&eav=Afbhdvm3ol_pKRZZULJXIKU6lYAEaqNeryQcwoy7LdiFTzfpUSt2RGLT7ODT_uLOb48&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giusy Viscuso,,2019-05-18,5,Fortunati noi italiani ad avere te come ministro👍😉,/giusy.viscuso.10?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=100&av=100013534782121&eav=Afbhdvm3ol_pKRZZULJXIKU6lYAEaqNeryQcwoy7LdiFTzfpUSt2RGLT7ODT_uLOb48&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cozzi Gabriella,,2019-05-18,1,NON TI STA BENE CALATO COSÌ IN AVANTI STO SPLENDIDO CAPELLINO!!!! 😂😂😂,/cozzi.gabriella?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=200&av=100013534782121&eav=AfZCknXTNCrVbX1JKWNL210jZETDJgUpH60SmCAg0AoR34cW8aVqC_mQ353B058F_FQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franca Guarducci,,2019-05-18,8,Eravamo tantissimi un mondo di gente splendida educata semplice,/franca.guarducci.92?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=200&av=100013534782121&eav=AfZCknXTNCrVbX1JKWNL210jZETDJgUpH60SmCAg0AoR34cW8aVqC_mQ353B058F_FQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alberto Kostoris,,2019-05-18,,Direi grazie Italia visto che ha precettato le sue truppe da ogni sezione locale. Bacioni,/alberto.kostoris?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=200&av=100013534782121&eav=AfZCknXTNCrVbX1JKWNL210jZETDJgUpH60SmCAg0AoR34cW8aVqC_mQ353B058F_FQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Alberto Calzaferri,,2019-05-18,1,"Gli stracci alla finestra mi ricordano le bandiere della pace, la stessa regia allora pro Saddam Hussein oggi pro immigrazione clandestina",/giovannialberto.calzaferri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=200&av=100013534782121&eav=AfZCknXTNCrVbX1JKWNL210jZETDJgUpH60SmCAg0AoR34cW8aVqC_mQ353B058F_FQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Pazzaglia,,2019-05-18,1,"Adesso che la piazza si è svuotata, appaiono le tv? mmmm",/antonio.pazzaglia.71?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=200&av=100013534782121&eav=AfZCknXTNCrVbX1JKWNL210jZETDJgUpH60SmCAg0AoR34cW8aVqC_mQ353B058F_FQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vito Cassa,,2019-05-18,5,Dal 4 marzo 2018 c'è dopo una vita a sinistra il mio sostegno convinto a Salvini. Voto Lega.,/profile.php?id=100011504469152&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=200&av=100013534782121&eav=AfZCknXTNCrVbX1JKWNL210jZETDJgUpH60SmCAg0AoR34cW8aVqC_mQ353B058F_FQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Bellin,,2019-05-18,4,Una giornata indimenticabile emozionante che segna la storia della politica italiana ed europea ❤️❤️❤️🍀🇮🇹,/roberta.bellin.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=200&av=100013534782121&eav=AfZCknXTNCrVbX1JKWNL210jZETDJgUpH60SmCAg0AoR34cW8aVqC_mQ353B058F_FQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ivana Maini,,2019-05-18,3,E' vero è stato emozionante! Hai detto tutto quello che serve all'Italia. Sei un grandissimo!!,/profile.php?id=100009969334791&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=200&av=100013534782121&eav=AfZCknXTNCrVbX1JKWNL210jZETDJgUpH60SmCAg0AoR34cW8aVqC_mQ353B058F_FQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rita Spinelli,,2019-05-18,1,Dov'è quella signora che voleva rubare il telefono a Morelli??? 😂😂😂😂,/rita.spinelli.35?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=200&av=100013534782121&eav=AfZCknXTNCrVbX1JKWNL210jZETDJgUpH60SmCAg0AoR34cW8aVqC_mQ353B058F_FQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vito Musso,,2019-05-18,3,L'unico politico italiano serio fin'ora. ...VINCIAMO LE EUROPEE CAPITANO DAJEEE,/profile.php?id=100005190198722&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=110&av=100013534782121&eav=AfZK2_xjNqvP4X6CiBkN6pLIg7KPHVD-vGvleo-n-Z1wRJHbGOYanY2hvLznmuu1GfY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Garbellini,,2019-05-18,5,L’Italia si sta risvegliando..e ho paura quando si renderà conto delle porcate dei governi precedenti...,/marcomadeinitaly?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=110&av=100013534782121&eav=AfZK2_xjNqvP4X6CiBkN6pLIg7KPHVD-vGvleo-n-Z1wRJHbGOYanY2hvLznmuu1GfY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Allocca,,2019-05-18,3,"Ora voglio vedere cosa ci racconteranno tv e giornali, grande Capitano!👏👏👏💚💚💚",/patrizia.allocca1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=110&av=100013534782121&eav=AfZK2_xjNqvP4X6CiBkN6pLIg7KPHVD-vGvleo-n-Z1wRJHbGOYanY2hvLznmuu1GfY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elio Bonsignore,,2019-05-18,5,Sei l' unico che ci puo salvare da sto marciume forza capitano,/elio.bonsignore?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=110&av=100013534782121&eav=AfZK2_xjNqvP4X6CiBkN6pLIg7KPHVD-vGvleo-n-Z1wRJHbGOYanY2hvLznmuu1GfY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Petr Wurm,,2019-05-18,3,Congrats Mr. Salvini. Greetings from the Czech Republic.,/petr.wurm?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=110&av=100013534782121&eav=AfZK2_xjNqvP4X6CiBkN6pLIg7KPHVD-vGvleo-n-Z1wRJHbGOYanY2hvLznmuu1GfY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvestro Soru,,2019-05-18,5,È stato emozionante vedere tutta questa gente sotto l'acqua per ore .MATTEO la gente ti ama non deluderla sempre e poi sempre viva SALVINI,/silvestro.soru?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=110&av=100013534782121&eav=AfZK2_xjNqvP4X6CiBkN6pLIg7KPHVD-vGvleo-n-Z1wRJHbGOYanY2hvLznmuu1GfY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Wally Martin Sossi,,2019-05-18,4,Mi hai emozionato... Grande Capitano ti vogliamo bene,/wally.martin.988?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=110&av=100013534782121&eav=AfZK2_xjNqvP4X6CiBkN6pLIg7KPHVD-vGvleo-n-Z1wRJHbGOYanY2hvLznmuu1GfY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Martino,,2019-05-18,4,"Alla faccia dei rosiconi, degli striscioni e pure di Zorro",/anna.martino.399?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=110&av=100013534782121&eav=AfZK2_xjNqvP4X6CiBkN6pLIg7KPHVD-vGvleo-n-Z1wRJHbGOYanY2hvLznmuu1GfY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Joana Mocanu,,2019-05-18,5,"Onore alle persone che hanno dimostrato che un incontro puo essere pacifico, dignitoso, positivo, e che si puo esprimere una preferenza senza urlare, picchiare, attaccare.",/ioana.mocanu.16?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=110&av=100013534782121&eav=AfZK2_xjNqvP4X6CiBkN6pLIg7KPHVD-vGvleo-n-Z1wRJHbGOYanY2hvLznmuu1GfY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michele Romina Ianzano,,2019-05-18,6,Anche con la pioggia Matteo ce tanta gente che ti sostiene vai avanti Capitano...,/MICHELE.IANZANO?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=110&av=100013534782121&eav=AfZK2_xjNqvP4X6CiBkN6pLIg7KPHVD-vGvleo-n-Z1wRJHbGOYanY2hvLznmuu1GfY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Umberto Bovesecco,ROOT,2019-05-18,,"Altri politici erano e sono circondati da scorte, per paura del male che fanno.",/umberto.bovesecco?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2202856366470062&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDBQSIKWFMBI8FK&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucrezia Sonja Dalla Rosa,Umberto Bovesecco,2019-05-18,,vero Di Maio ha SOLO la scorta vicino !!!,/lucreziasonjaDRG?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2202856366470062&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDBQSIKWFMBI8FK&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Cominini,ROOT,2019-05-18,3,Calcolando che qualche dozzina di persone son pagate per esserci avrebbe fatto più gente un concerto di Achille Lauro,/andrea.cominini.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525258155&count=14&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHq_Ri3ms808sE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Andrea Cominini,2019-05-18,,,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525258155&count=14&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHq_Ri3ms808sE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Cominini,Andrea Cominini,2019-05-18,,Emily Ronny che paura hahaha,/andrea.cominini.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525258155&count=14&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHq_Ri3ms808sE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Cominini,Andrea Cominini,2019-05-18,,,/andrea.cominini.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525258155&count=14&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHq_Ri3ms808sE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giovanni Modenese,Andrea Cominini,2019-05-18,,Emily Ronny dai che poi dal vivo vi cagate in mano,/profile.php?id=100008939711599&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525258155&count=14&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHq_Ri3ms808sE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Cominini,Andrea Cominini,2019-05-18,1,Giovanni Modenese hhaha ma lo sai zio che la mentalita in 5 elementare è o bianco o nero e loro la son rimasti,/andrea.cominini.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525258155&count=14&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHq_Ri3ms808sE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giovanni Modenese,Andrea Cominini,2019-05-18,1,Andrea Cominini ma è tutta gente frustrata da quando ha vent’anni,/profile.php?id=100008939711599&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525258155&count=14&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHq_Ri3ms808sE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Brigida Virgili,Andrea Cominini,2019-05-18,,Antonio Maconi non rispondiamo a queste provocazioni puerili e piene invidia. Noi non siamo come loro.,/profile.php?id=100009742724883&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525258155&count=14&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBHq_Ri3ms808sE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Antonio Maconi,Andrea Cominini,2019-05-18,,Andrea Cominini ecco! Figurati se le zecche come te non avrebbero insinuato cio. Non sapete piu a cosa attaccarvi. Io un idea te la posso dare,/antonio.maconi.58?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525258155&p=10&count=14&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCJz-TY7i7Dq6QU +Andrea Cominini,Andrea Cominini,2019-05-18,,"anche io un’idea te la posso dare, il tuo capitano ha una bocca e una faccia se vuole rispondermi 😁",/andrea.cominini.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525258155&p=10&count=14&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCJz-TY7i7Dq6QU +Emily Ronny,Andrea Cominini,2019-05-18,,Andrea Cominini,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525258155&p=10&count=14&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCJz-TY7i7Dq6QU +Marco Feletti,ROOT,2019-05-18,1,Ma alle zecche dei centri sociali nemmeno un giornalista va a intervistarli...,/marco.feletti.56?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366817987511644&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAda8qqldIcx3u6&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Marco Feletti,2019-05-18,,Pensa alle zecche fasciste con cui siete alleati,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366817987511644&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAda8qqldIcx3u6&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rita Spinelli,,2019-05-18,1,Dov'è quella signora che voleva rubare il telefono a Morelli??? 😂😂😂😂,/rita.spinelli.35?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=210&av=100013534782121&eav=AfZAsoEKQyuL_zbo1ueevDOnePsHBT12K0EPf9NWnnrh_-6pvCVAfRXwW9PMO2pBjiw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Caeta,,2019-05-18,1,"non lo mollano, ci prova a salutare, poi torna tra la gente,",/caetapatrizia?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=210&av=100013534782121&eav=AfZAsoEKQyuL_zbo1ueevDOnePsHBT12K0EPf9NWnnrh_-6pvCVAfRXwW9PMO2pBjiw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ermenegilda Velo,,2019-05-18,5,"Mai visto tanto affetto per un politico,da impazzire ,perchè è una persona semplice come noi.Complimenti Capitano",/ermenegilda.velo.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=210&av=100013534782121&eav=AfZAsoEKQyuL_zbo1ueevDOnePsHBT12K0EPf9NWnnrh_-6pvCVAfRXwW9PMO2pBjiw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Oliviero Ferrari,,2019-05-18,3,"Una lezione di civiltà non solo per i 5 star e per i sinistorsi, anche per tutta Europa, bravo Matteo tutto il vastò popolo della lega è con te",/oliviero.ferrari.587?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=210&av=100013534782121&eav=AfZAsoEKQyuL_zbo1ueevDOnePsHBT12K0EPf9NWnnrh_-6pvCVAfRXwW9PMO2pBjiw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Garofalo,,2019-05-18,10,"Mai visto un politico così amato dagli italiani, un politico che ha il coraggio di stare in mezzo alla gente normale, la gente comune ❤️",/profile.php?id=100006234136460&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=210&av=100013534782121&eav=AfZAsoEKQyuL_zbo1ueevDOnePsHBT12K0EPf9NWnnrh_-6pvCVAfRXwW9PMO2pBjiw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lauretta Coringrato,,2019-05-18,1,Copriti Matteo il 26 è vicino devi essere in forma come sempre... Viva Salvini sempre ❣️ 🌹 😘,/lauretta.coringrato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=210&av=100013534782121&eav=AfZAsoEKQyuL_zbo1ueevDOnePsHBT12K0EPf9NWnnrh_-6pvCVAfRXwW9PMO2pBjiw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viola Blu,,2019-05-18,9,Ma quel fenomeno di Calenda che doveva farti domande ed era in mezzo al pubblico..dice lui..e caduto in un tombino ? 😂😂😂,/annarita.anna.14?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=210&av=100013534782121&eav=AfZAsoEKQyuL_zbo1ueevDOnePsHBT12K0EPf9NWnnrh_-6pvCVAfRXwW9PMO2pBjiw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carmine Ende,,2019-05-18,3,"sansioni alla Russia...e i komunisti italiani zitti...e già ,non gli passa più la pappatoia e adesso la Russia può anche crepare...poi non li si deve chiamare traditori ai komunisti??",/carmine.ende.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=210&av=100013534782121&eav=AfZAsoEKQyuL_zbo1ueevDOnePsHBT12K0EPf9NWnnrh_-6pvCVAfRXwW9PMO2pBjiw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sergio Ted,ROOT,2019-05-18,4,Intanto che te parli la nave è entrata a lampedusa😂😂,/sergioted81?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&count=17&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAcgKaYlLUZ5jZ6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Allocca,Sergio Ted,2019-05-18,,Senza le 5 stalle ve lo sognavate il governo!!!!,/profile.php?id=100009373823382&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&count=17&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAcgKaYlLUZ5jZ6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Allocca,Sergio Ted,2019-05-18,,È facile avere gente a Milano centro!!!!,/profile.php?id=100009373823382&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&count=17&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAcgKaYlLUZ5jZ6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Allocca,Sergio Ted,2019-05-18,,Avesse le cosiddette di fare lo stesso comizio a Scampia!un ministro degli interni ce lo deve!!!!venga!,/profile.php?id=100009373823382&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&count=17&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAcgKaYlLUZ5jZ6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Monika Slotova,Sergio Ted,2019-05-18,,Ferdinando Trella 👍👍,/monika.slotova.54?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&count=17&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAcgKaYlLUZ5jZ6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuliano Dan,Sergio Ted,2019-05-18,3,Patrizia Allocca adesso ai rotto,/giuly.dan?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&count=17&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAcgKaYlLUZ5jZ6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sergio Ted,Sergio Ted,2019-05-18,,Era semplicemente x dire... che in Italia è così....,/sergioted81?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&count=17&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAcgKaYlLUZ5jZ6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Roberta Rossini,Sergio Ted,2019-05-18,1,Sergio Ted Grazie a magistrati e umanitari che vanno a prenderli sotto casa e ce li sbattono sotto.le nostre case a delinquere.,/roberta.rossini.7543?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&count=17&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAcgKaYlLUZ5jZ6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Piticchio,Sergio Ted,2019-05-18,,"Patrizia a Scampia ,nn avete De Magistris ? O Troppo impegnato a fare regate pro immigrati?",/profile.php?id=100008645130048&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&count=17&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAcgKaYlLUZ5jZ6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loreta Cappelletto,Sergio Ted,2019-05-18,,Patrizia Allocca se voleva poteva esserci.bisogna fare qualcosa per voler cambiare.No criticare!!,/loreta.cappelletto?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&count=17&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAcgKaYlLUZ5jZ6&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marco Feletti,,2019-05-18,,Anche .el Merdon stara guardando questa diretta ... Merdon prepara le valige,/marco.feletti.56?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=220&av=100013534782121&eav=AfbaC_DXM8UEEVHGsgeM4Npv02ORvC1oEzUO1-eWLtTwZBQkDVZVDUpJEnMfqWo7LXM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Feletti,,2019-05-18,6,Renzi sarà ingrassato di altri 10 kili oggi !! Sarà la da solo a mangiar biscotti x il nervoso,/marco.feletti.56?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=220&av=100013534782121&eav=AfbaC_DXM8UEEVHGsgeM4Npv02ORvC1oEzUO1-eWLtTwZBQkDVZVDUpJEnMfqWo7LXM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Andreis,,2019-05-18,6,Grande uomo passerai alla storia.. perché sei unico Matteo 💚💚,/profile.php?id=100004969397043&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=220&av=100013534782121&eav=AfbaC_DXM8UEEVHGsgeM4Npv02ORvC1oEzUO1-eWLtTwZBQkDVZVDUpJEnMfqWo7LXM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nadia Chiappini,,2019-05-18,,Forza Matteo non lasciarti sconfiggere non demordere!!💪🏻💪🏻👍🏻👏🏻👏🏻,/nadia.chippini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=220&av=100013534782121&eav=AfbaC_DXM8UEEVHGsgeM4Npv02ORvC1oEzUO1-eWLtTwZBQkDVZVDUpJEnMfqWo7LXM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ghita Huls,,2019-05-18,7,BRAVISSIMO MATTEO IL 26 MAGGIO TUTTI A VOTARE Lega - Salvini Premier,/profile.php?id=100001911903637&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=220&av=100013534782121&eav=AfbaC_DXM8UEEVHGsgeM4Npv02ORvC1oEzUO1-eWLtTwZBQkDVZVDUpJEnMfqWo7LXM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Santori,,2019-05-18,2,L'unico politico che puoi chiamare con il suo nome di battesimo... è questa la tua forza...essere uno di noi!!! 🇮🇹❤,/emanuela.santori.35?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=220&av=100013534782121&eav=AfbaC_DXM8UEEVHGsgeM4Npv02ORvC1oEzUO1-eWLtTwZBQkDVZVDUpJEnMfqWo7LXM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppina Pedà,,2019-05-18,5,"Non temi nessuno, tra la gente senza paura, invece siamo molto preoccupati per il grande rischio che vai incontro. Abbiamo bisogno di Te, italia prima in Europa.",/giuseppina.peda?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=220&av=100013534782121&eav=AfbaC_DXM8UEEVHGsgeM4Npv02ORvC1oEzUO1-eWLtTwZBQkDVZVDUpJEnMfqWo7LXM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Teresa Salvini,,2019-05-18,1,Matteo con la tua semplicita' e il tuo rapporto con la gente è unico . Grandissimo non farti sopra fare da nessuno,/mariateresa.s.50?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=220&av=100013534782121&eav=AfbaC_DXM8UEEVHGsgeM4Npv02ORvC1oEzUO1-eWLtTwZBQkDVZVDUpJEnMfqWo7LXM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Serrau,,2019-05-18,3,TUTTI INSIEME IL 26💪💪💪💪💪💪💪💪💪SI CAMBIA FINALMENTE COL NOSTRO CAPITANO💖💖💖💖,/profile.php?id=100013239524588&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=220&av=100013534782121&eav=AfbaC_DXM8UEEVHGsgeM4Npv02ORvC1oEzUO1-eWLtTwZBQkDVZVDUpJEnMfqWo7LXM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,,Commossa dell'affetto che c'è per te in quella piazza in cui sono stata più di 30 anni fa...estate 81 luglio bellissima davvero e non solo la piazza ma Milano!!!!!!,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=220&av=100013534782121&eav=AfbaC_DXM8UEEVHGsgeM4Npv02ORvC1oEzUO1-eWLtTwZBQkDVZVDUpJEnMfqWo7LXM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Irma Bettega,Sergio Ted,2019-05-18,2,Sergio Ted a casa tua ?😊,/irma.bettega.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBeH-GAZY9_x1p8 +Ferdinando Trella,Sergio Ted,2019-05-18,6,Sergio Ted,/ferdinando.trella?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBeH-GAZY9_x1p8 +Monika Slotova,Sergio Ted,2019-05-18,3,Con permesso di Conte 5 stelle.....,/monika.slotova.54?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBeH-GAZY9_x1p8 +Cristina Rossi,Sergio Ted,2019-05-18,4,Sergio Ted vada lei a fermarla,/profile.php?id=100029063387121&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBeH-GAZY9_x1p8 +Marialuisa Scarano,Sergio Ted,2019-05-18,7,Sergio Ted questo lo devi chiedere a conte e 5 stalle che fanno ...so tutto io faccio tutto io.,/marialuisa.scarano.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBeH-GAZY9_x1p8 +Antonio Costa,Sergio Ted,2019-05-18,1,Sergio Ted vorresti,/profile.php?id=100034922021657&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBeH-GAZY9_x1p8 +Pier Giorgio Maule,Sergio Ted,2019-05-18,,Sergio Ted effettivamente se ci fosse stato Napolitano ministro dell'interno la nave si beccava un siluro!,/piergiorgio.maule.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517818155&p=10&count=17&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQBeH-GAZY9_x1p8 +Lucia Faraone,,2019-05-18,1,Bellissima la piazza Duomo di Milano ci sono stata nell'estate dell'81,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=230&av=100013534782121&eav=AfaUlMPwqo6sFbgoHd6Bh-DcJAugKHdirHlZbezdEDNoYtMGniHmH_WL9dg0JrhMrQk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuliano Palma,,2019-05-18,2,Il 26 maggio sarà l' apoteosi del successo elettorale......si chiama consenso.,/palmagiuliano?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=230&av=100013534782121&eav=AfaUlMPwqo6sFbgoHd6Bh-DcJAugKHdirHlZbezdEDNoYtMGniHmH_WL9dg0JrhMrQk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Renata Rigitano,,2019-05-18,2,Mi piace perché i giornalisti cercano di intervistarlo ma lui gira il capo verso il popolo che lo ama. Grande 🙌,/renata.rigitano?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=230&av=100013534782121&eav=AfaUlMPwqo6sFbgoHd6Bh-DcJAugKHdirHlZbezdEDNoYtMGniHmH_WL9dg0JrhMrQk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nevio Lazzari,,2019-05-18,2,Anche sotto la pioggia tanta gente che vuole sentire proposte e idee per il futuro dei nostri figli,/nevio.lazzari.58?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=230&av=100013534782121&eav=AfaUlMPwqo6sFbgoHd6Bh-DcJAugKHdirHlZbezdEDNoYtMGniHmH_WL9dg0JrhMrQk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefano Capelli Steccolini,,2019-05-18,2,"Purtroppo io San Lavorino, ma con il cuore sono lì !! Forza Capitanoo",/stefano.capelli.10?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=230&av=100013534782121&eav=AfaUlMPwqo6sFbgoHd6Bh-DcJAugKHdirHlZbezdEDNoYtMGniHmH_WL9dg0JrhMrQk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gino Liburdi,,2019-05-18,2,"Cato Matteo, piu ti sttaccano, ti insultano, gi offendono e piu' ol popolo italisno e' con te! Avanti cosi e le Ruropee saranno tue.",/gino.liburdi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=230&av=100013534782121&eav=AfaUlMPwqo6sFbgoHd6Bh-DcJAugKHdirHlZbezdEDNoYtMGniHmH_WL9dg0JrhMrQk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Furino,,2019-05-18,3,GRANDISSIMO CAPITANO!!!!! solo tu puoi riempire le piazze così!!!! DA PELLE D'OCA!!!💚💚💚,/furinomaria?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=230&av=100013534782121&eav=AfaUlMPwqo6sFbgoHd6Bh-DcJAugKHdirHlZbezdEDNoYtMGniHmH_WL9dg0JrhMrQk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marisa Di Nauta,,2019-05-18,3,"Quanti giovani, bravi ragazzi. Altro che gli smidollati di sx dei centri sociali...tutto ""fumo"" e niente cervello.",/marisa.dinauta?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=230&av=100013534782121&eav=AfaUlMPwqo6sFbgoHd6Bh-DcJAugKHdirHlZbezdEDNoYtMGniHmH_WL9dg0JrhMrQk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Erminio Caruso,,2019-05-18,,"Dai non ti fermare, saluta tutti almeno quelli che puoi!",/erminio.caruso.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=230&av=100013534782121&eav=AfaUlMPwqo6sFbgoHd6Bh-DcJAugKHdirHlZbezdEDNoYtMGniHmH_WL9dg0JrhMrQk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Rusconi,,2019-05-18,2,Ma dove pensano di andare quei quattro pidocchi dei centri sociali forza lega 💚💚💚💚💚,/carla.rusconi.94?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=230&av=100013534782121&eav=AfaUlMPwqo6sFbgoHd6Bh-DcJAugKHdirHlZbezdEDNoYtMGniHmH_WL9dg0JrhMrQk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vincenzo Sarnataro,,2019-05-18,5,Grande Matteo salvini non arrenderti fallì schiattare,/vincenzo.sarnataro.7547?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=120&av=100013534782121&eav=AfZAXOqAvto5gnp4Q15fq-K4TFToN6ESymMF7Y8cirtjXItyS4rWrMt8o-SuGsfGY6E&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mauro Piacentini,,2019-05-18,3,"Un mega grazie ai social, dove possiamo liberamente vedere e ascoltare ciò che veramente vogliamo. Grande Salvini ho sempre snobbato disgustato la politica, ora la vedo sotto un altro aspetto.",/MauroPiacentini70?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=120&av=100013534782121&eav=AfZAXOqAvto5gnp4Q15fq-K4TFToN6ESymMF7Y8cirtjXItyS4rWrMt8o-SuGsfGY6E&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Gionny,,2019-05-18,3,Siate sempre per prima persone buone brave per bene . Noi amici di Matteo siamo questo delle brave persone . Persone che cercano serenità pace amore .♥️,/giovanni.gionny.52?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=120&av=100013534782121&eav=AfZAXOqAvto5gnp4Q15fq-K4TFToN6ESymMF7Y8cirtjXItyS4rWrMt8o-SuGsfGY6E&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Guadagnuolo,,2019-05-18,3,"Grande ministro, questa è democrazia, gli altri solo figuracce",/raffaella.guadagnuolo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=120&av=100013534782121&eav=AfZAXOqAvto5gnp4Q15fq-K4TFToN6ESymMF7Y8cirtjXItyS4rWrMt8o-SuGsfGY6E&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Domenico Itria,,2019-05-18,3,Dici cose giuste ...e quello che vogliamo ...l'Italia. E nostra ...é tu ci rappresenti alla grande 👍,/domenico.itria.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=120&av=100013534782121&eav=AfZAXOqAvto5gnp4Q15fq-K4TFToN6ESymMF7Y8cirtjXItyS4rWrMt8o-SuGsfGY6E&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Garnarolo,,2019-05-18,5,Ragazzi stasera vedremo i telegiornali cosa riporteranno su questa giornata fantastica che a osannato la lega e Salvini sono curiosa veramente,/raffaella.garnarolo.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=120&av=100013534782121&eav=AfZAXOqAvto5gnp4Q15fq-K4TFToN6ESymMF7Y8cirtjXItyS4rWrMt8o-SuGsfGY6E&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cosimo DI Fonzo,,2019-05-18,3,"Siamo noi che siamo fieri di avere Te, e non un ""capetto"" qualsiasi.👍💚💪.",/mimmo.difonzo.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=120&av=100013534782121&eav=AfZAXOqAvto5gnp4Q15fq-K4TFToN6ESymMF7Y8cirtjXItyS4rWrMt8o-SuGsfGY6E&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fero Fin,,2019-05-18,5,"Un GRANDE, da troppo tempo ne mancava uno così, raccogliere tanta gente con tutte quelle offese ricevute, vuol solo dire ESSERE GRANDE, e senza offendere come abituati altri partiti politici, vai capitano ciaoooooo gente.",/fero.fin?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=120&av=100013534782121&eav=AfZAXOqAvto5gnp4Q15fq-K4TFToN6ESymMF7Y8cirtjXItyS4rWrMt8o-SuGsfGY6E&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gennaro Casella,ROOT,2019-05-18,,Io ancora non capisco perché vi ostinate a rimuovere impropriamente gli striscioni della gente.. siamo in democrazia o dittatura?,/gennarosmith.casella?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407405273434982&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD9dcoDyLb9m32X&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Gennaro Casella,2019-05-18,,si chiama fascismo,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407405273434982&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD9dcoDyLb9m32X&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Grazia Pascoletti,Gennaro Casella,2019-05-18,,Le stupidaggini vanno eliminate come le zanzare,/mariagrazia.pascoletti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407405273434982&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD9dcoDyLb9m32X&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gabriella Raspino Labagnara,Gennaro Casella,2019-05-18,,Non capite. Punto,/Gabrjras?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407405273434982&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD9dcoDyLb9m32X&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gabriella Raspino Labagnara,Gennaro Casella,2019-05-18,1,Giangiacomo Carretta meglio dei fascisti comunisti!,/Gabrjras?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407405273434982&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD9dcoDyLb9m32X&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luciana Boniforti,Gennaro Casella,2019-05-18,,"prima eravamo in un regime, adesso c e' democrazia. siete piu' fascisti dei fascisti..il comunismo, andate a documentarvi va che ha fatto il quadruplo di vittime del fascismo",/luciana.boniforti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407405273434982&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD9dcoDyLb9m32X&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Laura Cadolino,ROOT,2019-05-18,3,I sinistri dicono che c'erano quattro gatti. Secondo loro erano tutti i poliziotti agenti della Digos e giornalisti🤣🤣🤣🤣,/laura.cadolino?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265842937002169&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBoWeg1QvZ4merw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,Laura Cadolino,2019-05-18,1,Laura Cadolino 😂,/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265842937002169&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBoWeg1QvZ4merw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Stella Paonna,,2019-05-18,2,Il tuo sorriso ci carica di fiducia e speranza 🥰 siamo tutti con te e tu con noi tvb ❤️,/ginoe.stella?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=240&av=100013534782121&eav=Afak_Ex5FKzp9ZF3_yDgx1cM8HBxz28Tq1mb6ECgazeUhwddquDFFGoGXvSUh922PN8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marconi Mara,,2019-05-18,3,Matteo sono.romana e sono con.te difendi l'Italia per i nostri figli e nipoti.,/maramarconi1950?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=240&av=100013534782121&eav=Afak_Ex5FKzp9ZF3_yDgx1cM8HBxz28Tq1mb6ECgazeUhwddquDFFGoGXvSUh922PN8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tommaso Fraioli,,2019-05-18,2,Unico baluardo per noi cittadini italiani!! Forza Capitano! Viva l’Italia!💪🏼🇮🇹🇮🇹🇮🇹,/tommaso.fraioli.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=240&av=100013534782121&eav=Afak_Ex5FKzp9ZF3_yDgx1cM8HBxz28Tq1mb6ECgazeUhwddquDFFGoGXvSUh922PN8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcello Manna,,2019-05-18,,"Le attestazioni d'affetto che riceve Matteo mi commuovono. Se le merita. Matteo, uno di NOI!",/marcello.manna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=240&av=100013534782121&eav=Afak_Ex5FKzp9ZF3_yDgx1cM8HBxz28Tq1mb6ECgazeUhwddquDFFGoGXvSUh922PN8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria-Rita Quercia,,2019-05-18,2,Italiani vota lega il 26 e sara il rinovamento della speranza forza Salvini,/mariarita.quercia?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=240&av=100013534782121&eav=Afak_Ex5FKzp9ZF3_yDgx1cM8HBxz28Tq1mb6ECgazeUhwddquDFFGoGXvSUh922PN8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandro Piotti,,2019-05-18,2,"Sei troppo democratico,fai le cose che vanno fatte e vedrai che i consensi si alzeranno.",/alessandro.piotti.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=240&av=100013534782121&eav=Afak_Ex5FKzp9ZF3_yDgx1cM8HBxz28Tq1mb6ECgazeUhwddquDFFGoGXvSUh922PN8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Benny Torino,,2019-05-18,1,"Attenti a quei comunistoni strafatti dei selfie fasulli, ovviamente non presenti oggi",/benny.torino.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=240&av=100013534782121&eav=Afak_Ex5FKzp9ZF3_yDgx1cM8HBxz28Tq1mb6ECgazeUhwddquDFFGoGXvSUh922PN8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Assunta Guaini,,2019-05-18,7,non vedo l'ora che arrivi il 26 ..forza MATTEO SIAMO TANTI CON TE ..X SEMPRE LEGA,/assunta.guaini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=240&av=100013534782121&eav=Afak_Ex5FKzp9ZF3_yDgx1cM8HBxz28Tq1mb6ECgazeUhwddquDFFGoGXvSUh922PN8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Benny Torino,,2019-05-18,1,Il potere mediatico-giustizialista di sinistroidi e pentastellati non ti fermerà,/benny.torino.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=240&av=100013534782121&eav=Afak_Ex5FKzp9ZF3_yDgx1cM8HBxz28Tq1mb6ECgazeUhwddquDFFGoGXvSUh922PN8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabrizio Ogni,ROOT,2019-05-18,3,Sai i rosiconi sinistri di Milano che fegato verde che avevano,/ogni.fabbri?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543772696029320&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCXpeE-Vzor3GYG&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Luisa Rossi,Fabrizio Ogni,2019-05-18,,Fabrizio Ogni Non solo quelli di Milano,/zia.luisa.92?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543772696029320&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCXpeE-Vzor3GYG&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimo Albini,ROOT,2019-05-18,,Nuova professione selfista ahshah bravo Teo è così che si conquista l'italiano,/massimo.albini.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407407163434793&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDWLUgdpXdMk4Du&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucrezia Sonja Dalla Rosa,Massimo Albini,2019-05-18,,massimo albini statte zitto,/lucreziasonjaDRG?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407407163434793&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDWLUgdpXdMk4Du&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Salvatore AF,Massimo Albini,2019-05-18,1,Possibile che continui a guardare cio che non ti piace per star male? Vatti a guardare Zingaretti rosicone e masochista,/zioaire?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407407163434793&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDWLUgdpXdMk4Du&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fabio Florian,Massimo Albini,2019-05-18,,Si roda,/TITOsmalti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407407163434793&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDWLUgdpXdMk4Du&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ottavia Frasconi,Massimo Albini,2019-05-18,,Massimo Albini rosichi?,/ottavia.frasconi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407407163434793&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDWLUgdpXdMk4Du&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimo Albini,Massimo Albini,2019-05-18,,Ottavia Frasconi no non rosico voleva esser un dato di fatto positivo saranno ben altri a rosicare,/massimo.albini.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407407163434793&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDWLUgdpXdMk4Du&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimo Albini,Massimo Albini,2019-05-18,,"Vedo che in molti non avete compreso... è positivo il fatto che abbia detto prima ai giornalisti, mi lasciate andare anche di là. .. lo osanniamo e lui giustamente da leader va da chi lo sostiene non ricordo di aver visto politici in passato stare in mezzo alla gente. E mi stanno sul culo quelli che stanno facendo di tutto per infangarlo e mi auguro che Teo non molli e chi se frega se gli danno del fascista solo perché lui prima sta con gli italiani.",/massimo.albini.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407407163434793&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDWLUgdpXdMk4Du&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mary Angela,,2019-05-18,2,Gioia infinita. .immensa! !!!💖💖💖💖💙💙💙💙 il resto deve solo sparire dopo oggi ... grandiiiiii,/Mariangela.Reinotti90?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=130&av=100013534782121&eav=Afa59MNF3bfRngQyXXSCxMIOhy3bX2vAGy3cLe9ydJROjflt60kwwbj-ucqNogRBsGg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monia Martini,,2019-05-18,3,Ti ho visto al TV. Hai fatto un discorso bellissimo e concreto! Sei un grande. FORZA MATTEOOOOO,/monia.martini1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=130&av=100013534782121&eav=Afa59MNF3bfRngQyXXSCxMIOhy3bX2vAGy3cLe9ydJROjflt60kwwbj-ucqNogRBsGg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Recchia,,2019-05-18,3,Matteo sei straordinario.Grazie per quello ché fai per gli Italiani.,/profile.php?id=100009333272273&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=130&av=100013534782121&eav=Afa59MNF3bfRngQyXXSCxMIOhy3bX2vAGy3cLe9ydJROjflt60kwwbj-ucqNogRBsGg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Piccirillo,,2019-05-18,4,Grande Matteo salvino. Ma le tv dove sono .tutte sparite un evento così di grande portata.in bocca al lupo. Noi siamo con te,/giovanna.piccirillo.790?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=130&av=100013534782121&eav=Afa59MNF3bfRngQyXXSCxMIOhy3bX2vAGy3cLe9ydJROjflt60kwwbj-ucqNogRBsGg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bruna Stagno,,2019-05-18,2,"ne andiamo fieri noi IANI, abbiamo fatto finalmente una ottima scelta",/bruna.stagno.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=130&av=100013534782121&eav=Afa59MNF3bfRngQyXXSCxMIOhy3bX2vAGy3cLe9ydJROjflt60kwwbj-ucqNogRBsGg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Filomena Peluso,,2019-05-18,4,Oggi eravamo tutti al tuo fianco Capitano. E lo dimostreremo il 26 con i fatti. Orgogliosa di far parte di questa bellissima squadra. 💪💪Lega.,/filomena.peluso.33?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=130&av=100013534782121&eav=Afa59MNF3bfRngQyXXSCxMIOhy3bX2vAGy3cLe9ydJROjflt60kwwbj-ucqNogRBsGg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Robyn Hood,,2019-05-18,3,"Le tv in occasione dei comizi di Sinistra o dei sindacati hanno fatto la diretta ,o comunque hanno dato ampio risalto , invece per quello della Lega silenzio assordante...mi chiedo se questa è democrazia",/profile.php?id=100028161612865&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=130&av=100013534782121&eav=Afa59MNF3bfRngQyXXSCxMIOhy3bX2vAGy3cLe9ydJROjflt60kwwbj-ucqNogRBsGg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elio Adriano Imperatore,,2019-05-18,2,L’effetto panoramico in effetti aumenta la percezione delle cose. Bravo,/adriano.imperatore1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=130&av=100013534782121&eav=Afa59MNF3bfRngQyXXSCxMIOhy3bX2vAGy3cLe9ydJROjflt60kwwbj-ucqNogRBsGg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Santa Nutile,,2019-05-18,2,SSSII ANCHE IL NOSRO BATTEEE A GUARDARTIIII:::SEI UNICOOOO:,/santa.nutile?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=250&av=100013534782121&eav=AfY3CKgw-q5VSydm051lg_go2UgfG_7CU1mxUlDI0YSmHFvaIj2ebixQVnDjaamKYgA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Guido De Giorgio,,2019-05-18,,Hai sentito cosa dice Berlusca..vuole un governo tecnico..roba da non credere.,/guido.degiorgio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=250&av=100013534782121&eav=AfY3CKgw-q5VSydm051lg_go2UgfG_7CU1mxUlDI0YSmHFvaIj2ebixQVnDjaamKYgA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ilva Radi,,2019-05-18,6,"Lo sentiamo il tuo cuore che batteeeee, ssiiiiiiiiii e siamo lì con te!!!! Sei un mitoooooo.....grandeeeeeee e sempre più forte !!!",/ilva.radi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=250&av=100013534782121&eav=AfY3CKgw-q5VSydm051lg_go2UgfG_7CU1mxUlDI0YSmHFvaIj2ebixQVnDjaamKYgA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniele Dattilo,,2019-05-18,1,D'u gatti!! Milano è casa tua!!.. C'è ancora speranza!!,/daniele.dattilo.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=250&av=100013534782121&eav=AfY3CKgw-q5VSydm051lg_go2UgfG_7CU1mxUlDI0YSmHFvaIj2ebixQVnDjaamKYgA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Teresa Desiderio,,2019-05-18,1,Giusto molla quel bamboccione e mettiti con Giorgia Meloni...forza tutti a votare il Capitano ......,/teresa.desiderio.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=250&av=100013534782121&eav=AfY3CKgw-q5VSydm051lg_go2UgfG_7CU1mxUlDI0YSmHFvaIj2ebixQVnDjaamKYgA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giorgio Foscili,,2019-05-18,2,Che bello vedere tutti questi sorrisi... Al bando la rabbia e l'invidia di chi rosica... W l'Italia 🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹 questa Italia!!!!!,/giorgiof?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=250&av=100013534782121&eav=AfY3CKgw-q5VSydm051lg_go2UgfG_7CU1mxUlDI0YSmHFvaIj2ebixQVnDjaamKYgA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Bacheca,,2019-05-18,2,"Avanti così non mollare che ti criticano in molti ma sotto sotto la pensano come te,anche i finti buonisti👏👏",/profile.php?id=100022056168258&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=250&av=100013534782121&eav=AfY3CKgw-q5VSydm051lg_go2UgfG_7CU1mxUlDI0YSmHFvaIj2ebixQVnDjaamKYgA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniele Margheri,,2019-05-18,,"I lenzuoli sono stati un successone, piazza duomo piena come ogni sabato!",/daniele.margheri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=250&av=100013534782121&eav=AfY3CKgw-q5VSydm051lg_go2UgfG_7CU1mxUlDI0YSmHFvaIj2ebixQVnDjaamKYgA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Bacci,,2019-05-18,1,"ma fra tutti gli addetti alla sicurezza, nessuno ti dà un giacchino? sei in camicia! diluvia!",/cristina.bacci.10?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=250&av=100013534782121&eav=AfY3CKgw-q5VSydm051lg_go2UgfG_7CU1mxUlDI0YSmHFvaIj2ebixQVnDjaamKYgA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vito Carbonara,ROOT,2019-05-18,2,Mi ai deluso dopo aver visto Report non voto più Lega siete tutti corrotti siete pieno di marciume mi dispiace meglio Di Maio,/vito.carbonara.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525073155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBAvBq27URGtCpZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Antonio Maconi,Vito Carbonara,2019-05-18,2,Vai a studiare l'italiano. Poi puoi commetare,/antonio.maconi.58?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525073155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBAvBq27URGtCpZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucia Coppa,Vito Carbonara,2019-05-18,1,Vito Carbonara report ma per favore per forza è Rai 3,/lucia.coppa.779?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525073155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBAvBq27URGtCpZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ferdinando Trella,Vito Carbonara,2019-05-18,4,Vito Carbonara .....non le sembrano un po’ strani questi reportages sotto elezioni ?? Rai 3 le dice niente ?? Poi voti chi vuole !!,/ferdinando.trella?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525073155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBAvBq27URGtCpZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Vito Carbonara,Vito Carbonara,2019-05-18,,Vedo un po di tutto molto informato 👍,/vito.carbonara.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525073155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBAvBq27URGtCpZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Vito Carbonara,2019-05-18,1,Vito Carbonara voti e vada con gli zoppi così ci sará uno zoppo in più !!,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525073155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBAvBq27URGtCpZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna Persi,Vito Carbonara,2019-05-18,1,Vito Carbonara così l Italia si ferma del tutto...,/anna.persi.73?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525073155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBAvBq27URGtCpZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Vito Carbonara,Vito Carbonara,2019-05-18,,Meglio con i zoppi che con i mafiosi,/vito.carbonara.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622525073155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBAvBq27URGtCpZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Davide Di Imma,ROOT,2019-05-18,2,"I veri fascisti sono a Bruxelles, vogliono una Europa serva dei loro ideali e sete di potere. Questo si che è fascismo!",/davide.natale.395?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2224495100966566&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAK_DEbNypiAj2D&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Davide Di Imma,2019-05-18,,ripigliato,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2224495100966566&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAK_DEbNypiAj2D&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Catia Garbi,,2019-05-18,2,Ti diranno che con gli ombrelli sembra che c'è più gente 😆😆😆😆,/catia.garbi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=140&av=100013534782121&eav=AfbSMcxq0rqR-M6ThGF6eCHFdqzOjg2mj3kHdfJtq8p7s1lNuasKRZBaFkDppFW69_c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paolo Comparin,,2019-05-18,2,Anche questa piazza e vuota ... brutte zecche rosse !!!!!!,/paolo.comparin.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=140&av=100013534782121&eav=AfbSMcxq0rqR-M6ThGF6eCHFdqzOjg2mj3kHdfJtq8p7s1lNuasKRZBaFkDppFW69_c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Diana,,2019-05-18,4,Niente a che vedere coi soliti quattro gatti presenti alle manifestazioni dei pdioti,/antonio.diana.167?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=140&av=100013534782121&eav=AfbSMcxq0rqR-M6ThGF6eCHFdqzOjg2mj3kHdfJtq8p7s1lNuasKRZBaFkDppFW69_c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lenzu Donatella,,2019-05-18,2,"Fate votare chi è fuori per lavoro e non può rientrare nella città di residenza, date anche a noi la possibilità di votare,",/lenzu.donatella?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=140&av=100013534782121&eav=AfbSMcxq0rqR-M6ThGF6eCHFdqzOjg2mj3kHdfJtq8p7s1lNuasKRZBaFkDppFW69_c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Pacini,,2019-05-18,2,Che spettacolo .... quale altro politico ha riempito piazza Duomo a Milano così?Io non ho ricordanza,/paola.pacini.18?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=140&av=100013534782121&eav=AfbSMcxq0rqR-M6ThGF6eCHFdqzOjg2mj3kHdfJtq8p7s1lNuasKRZBaFkDppFW69_c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pucci Rossi,,2019-05-18,3,Ora aspettiamo la questura che dirà il numero preciso come al solito!!!! Vai alla grande,/profile.php?id=100008738140930&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=140&av=100013534782121&eav=AfbSMcxq0rqR-M6ThGF6eCHFdqzOjg2mj3kHdfJtq8p7s1lNuasKRZBaFkDppFW69_c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Bettini,,2019-05-18,4,È solo l'inizio di un percorso che ci porterà alla Vittoria.,/roberto.bettini.336?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=140&av=100013534782121&eav=AfbSMcxq0rqR-M6ThGF6eCHFdqzOjg2mj3kHdfJtq8p7s1lNuasKRZBaFkDppFW69_c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ornella Magliola,,2019-05-18,5,Semplicemente splendida Lega! E Le Pen che parla in italiano....incredibile!!,/profile.php?id=100009775717658&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=140&av=100013534782121&eav=AfbSMcxq0rqR-M6ThGF6eCHFdqzOjg2mj3kHdfJtq8p7s1lNuasKRZBaFkDppFW69_c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rudy Rodolfo Paulin,,2019-05-18,1,"L italia aveva bisogno di speranza nel futuro,sicurezza,di essere italiana. L italia ha bisogno vincere ancora.ai più la sinistra al governo",/profile.php?id=100017851786127&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=140&av=100013534782121&eav=AfbSMcxq0rqR-M6ThGF6eCHFdqzOjg2mj3kHdfJtq8p7s1lNuasKRZBaFkDppFW69_c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Regina Canton,,2019-05-18,4,"Grande Capitano, vorrei tanto essere lì con te!!!!! 💓💓💓💕💕💕💕",/regina.canton.39?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=260&av=100013534782121&eav=AfbmTu83yFjUyCc35szee5-cvSa2q3pUJT5RrPLYXi4qiofhb0LMMBm8FKaPCCPxg64&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giacomo Vitale,,2019-05-18,3,Che poveracci quelli della Rai Sky e la 7 nessuno ha fatto la diretta,/giacomo.vitale?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=260&av=100013534782121&eav=AfbmTu83yFjUyCc35szee5-cvSa2q3pUJT5RrPLYXi4qiofhb0LMMBm8FKaPCCPxg64&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Jnes Bertelli,,2019-05-18,1,Matteo continua così ! sappiatelo è un grade Ciao Matteo porti chiusi punto.,/jnes.bertelli.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=260&av=100013534782121&eav=AfbmTu83yFjUyCc35szee5-cvSa2q3pUJT5RrPLYXi4qiofhb0LMMBm8FKaPCCPxg64&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Pierdomenico,,2019-05-18,,"Sempre avanti, hai l'opportunità di farti conoscere x ciò che davvero sei. L'italia aspetta il cambiamento, e credo che questa sua la strada giusta...W L'ITALIA!!!!!",/patrizia.pierdomenico.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=260&av=100013534782121&eav=AfbmTu83yFjUyCc35szee5-cvSa2q3pUJT5RrPLYXi4qiofhb0LMMBm8FKaPCCPxg64&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vittorio Annicchino,,2019-05-18,,Ormai la vittoria e prossima non ti fermerà più nessuno il 26 Maggio è arrivato.,/vittorio.annicchino?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=260&av=100013534782121&eav=AfbmTu83yFjUyCc35szee5-cvSa2q3pUJT5RrPLYXi4qiofhb0LMMBm8FKaPCCPxg64&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ciro Pirone,,2019-05-18,1,"mi dispiace Matteo di non esserci, x forza maggiore , ma ero col cuore, e non ti tradiròII dai Matteo Salvini",/ciro.pirone.712?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=260&av=100013534782121&eav=AfbmTu83yFjUyCc35szee5-cvSa2q3pUJT5RrPLYXi4qiofhb0LMMBm8FKaPCCPxg64&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Russo,,2019-05-18,,Questa gente e tutta gente della milano ricca che vogliono pagare le tasse a poco prezzo e i poveri alla fame questi sono tutti ricchi la milano dei ricchi ma,/profile.php?id=100021501744053&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=260&av=100013534782121&eav=AfbmTu83yFjUyCc35szee5-cvSa2q3pUJT5RrPLYXi4qiofhb0LMMBm8FKaPCCPxg64&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Lipreri,,2019-05-18,4,"Non stare in camicia Salvini, piove e fa freddo, copriti , avanti così!!!",/lucia.lipreri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=260&av=100013534782121&eav=AfbmTu83yFjUyCc35szee5-cvSa2q3pUJT5RrPLYXi4qiofhb0LMMBm8FKaPCCPxg64&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Efrem Verona,,2019-05-18,,Finalmente vediamo tutta l'Italia unita in un solo grande Popolo guidato dalla Lega....w. l'Italia unita....,/profile.php?id=100007603488731&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=260&av=100013534782121&eav=AfbmTu83yFjUyCc35szee5-cvSa2q3pUJT5RrPLYXi4qiofhb0LMMBm8FKaPCCPxg64&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nello Russo,ROOT,2019-05-18,3,"Mai nella storia, si era vista una Milano stra piena. A VOI ROSICONI : che effetto vi fa'? Questo è solo l'inizio,preparatevi la vaselina x il dopo 26 maggio",/sebastiano.russo.7902?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301907420698404&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD3YcTEDte5LVNG&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio De Maria,Nello Russo,2019-05-18,,Nello Russo hai ragione,/giorgio.demaria.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301907420698404&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD3YcTEDte5LVNG&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giovanni Petriccioli,ROOT,2019-05-18,,"Orgoglioso di essere espatriato, paese senza speranza, a un passo dal baratro culturale",/giovanni.petriccioli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2224495034299906&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCbyX_NlWhyOt1Z&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniela Alfieri,Giovanni Petriccioli,2019-05-18,1,"bravo, resta dove sei.",/daniela.alfieri.71?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2224495034299906&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCbyX_NlWhyOt1Z&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucrezia Sonja Dalla Rosa,Giovanni Petriccioli,2019-05-18,1,ecco bravo resta dove sei,/lucreziasonjaDRG?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2224495034299906&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCbyX_NlWhyOt1Z&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cosimo DI Fonzo,,2019-05-18,3,"Siamo noi che siamo fieri di avere Te, e non un ""capetto"" qualsiasi.👍💚💪.",/mimmo.difonzo.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=150&av=100013534782121&eav=AfbKdmKS936cFjyojcdq7iaWKVXaB7_zzfGxDbtmxEut-kXvDlF72CsEJiOTd-HJVoM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonina Foddanu,,2019-05-18,1,E stato un immenso tripudio di folla assieme agli alleati europei ! W Salvini !,/antonina.foddanu?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=150&av=100013534782121&eav=AfbKdmKS936cFjyojcdq7iaWKVXaB7_zzfGxDbtmxEut-kXvDlF72CsEJiOTd-HJVoM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luciana Semerano,,2019-05-18,3,Alla faccia dei rosiconi che ci danno per perdenti ....malox a vita,/luciana.semerano?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=150&av=100013534782121&eav=AfbKdmKS936cFjyojcdq7iaWKVXaB7_zzfGxDbtmxEut-kXvDlF72CsEJiOTd-HJVoM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniele Davi,,2019-05-18,2,La cosa più schifosa italia contro italia. Che vergogna invece di pensare al futuro dei giovani.,/senzacuore13?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=150&av=100013534782121&eav=AfbKdmKS936cFjyojcdq7iaWKVXaB7_zzfGxDbtmxEut-kXvDlF72CsEJiOTd-HJVoM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angeli Renzo,,2019-05-18,1,"Chiedi ai tuoi amici europei se si prendono un po di migranti e poi spiegaci perché non li vogliono, grazie",/angeli.renzo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=150&av=100013534782121&eav=AfbKdmKS936cFjyojcdq7iaWKVXaB7_zzfGxDbtmxEut-kXvDlF72CsEJiOTd-HJVoM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mattia Banco,,2019-05-18,2,Sta volta metterà male dire che c erano solo quattro sfigati di destra (cit. Di maio),/profile.php?id=100010864295658&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=150&av=100013534782121&eav=AfbKdmKS936cFjyojcdq7iaWKVXaB7_zzfGxDbtmxEut-kXvDlF72CsEJiOTd-HJVoM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Adami,,2019-05-18,3,Che emozione..visto tutta la diretta..grande Matteo 💙😘,/cristina.adami.923?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=150&av=100013534782121&eav=AfbKdmKS936cFjyojcdq7iaWKVXaB7_zzfGxDbtmxEut-kXvDlF72CsEJiOTd-HJVoM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Peli,,2019-05-18,1,Saran due gatti ma questi erano di razza e lo dicono i buonisti rosica te viva MINISTRO SALVINI questa si che è una bellissima rivincita,/profile.php?id=100010904520120&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=150&av=100013534782121&eav=AfbKdmKS936cFjyojcdq7iaWKVXaB7_zzfGxDbtmxEut-kXvDlF72CsEJiOTd-HJVoM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marzia Summer,,2019-05-18,3,Sono andata a vedere il video delle povere zecche che manifestavano contro......una tristezza totale😢,/profile.php?id=100009328156869&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=150&av=100013534782121&eav=AfbKdmKS936cFjyojcdq7iaWKVXaB7_zzfGxDbtmxEut-kXvDlF72CsEJiOTd-HJVoM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Testoni,,2019-05-18,,Grandissimo Matteo sei l’unico ed il migliore avanti tutta.,/giovanni.testoni.35?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=270&av=100013534782121&eav=AfbL7PI3lYztvePEi2QBHAxvN3Gx7NIpNF4qK8Hpy3BSWPGOO4kRXCYjLsItngFyLn4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lidia Cimolino,,2019-05-18,4,Ci sono... Ci sono... e ci sarò anche domenica alle elezioni. Con Salvini sempre!!!,/lidia.cimolino?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=270&av=100013534782121&eav=AfbL7PI3lYztvePEi2QBHAxvN3Gx7NIpNF4qK8Hpy3BSWPGOO4kRXCYjLsItngFyLn4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella D'Andreagiovanni,,2019-05-18,4,Sei meraviglioso !!! Grazie infinite per dare all’Italia e noi veri Italiani una vera identità’!!! Quella di essere ITALIANI !!!! Grazieeeeeeeee !!!! 🇮🇹❤️😘,/antonella.dandreagiovanni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=270&av=100013534782121&eav=AfbL7PI3lYztvePEi2QBHAxvN3Gx7NIpNF4qK8Hpy3BSWPGOO4kRXCYjLsItngFyLn4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio La Torre,,2019-05-18,1,Però devo dire grazie alla sinistra mi fa così schifo altrimenti magari non sono ancora loro,/antonio.latorre.522?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=270&av=100013534782121&eav=AfbL7PI3lYztvePEi2QBHAxvN3Gx7NIpNF4qK8Hpy3BSWPGOO4kRXCYjLsItngFyLn4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Massimo Donna,,2019-05-18,1,Grande CAPITANO!!!! il tuo grosso problema è di Maio.. mollalo,/massimo.donna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=270&av=100013534782121&eav=AfbL7PI3lYztvePEi2QBHAxvN3Gx7NIpNF4qK8Hpy3BSWPGOO4kRXCYjLsItngFyLn4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Lamonarca,,2019-05-18,1,DOMENICA È SEMPRE DIMENICA SI SVEGLIA LA CITTA CON LE CAMPANE .....A MATTEO,/profile.php?id=100012369818701&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=270&av=100013534782121&eav=AfbL7PI3lYztvePEi2QBHAxvN3Gx7NIpNF4qK8Hpy3BSWPGOO4kRXCYjLsItngFyLn4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sunday Akinsira,,2019-05-18,,But changed when you want to take picture with black,/profile.php?id=100010102008288&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=270&av=100013534782121&eav=AfbL7PI3lYztvePEi2QBHAxvN3Gx7NIpNF4qK8Hpy3BSWPGOO4kRXCYjLsItngFyLn4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +AnnaLisa Colasante,,2019-05-18,1,"Continua così siamo tutti con te, e soprattutto non farti calpestare",/annalisa.colasante.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=270&av=100013534782121&eav=AfbL7PI3lYztvePEi2QBHAxvN3Gx7NIpNF4qK8Hpy3BSWPGOO4kRXCYjLsItngFyLn4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Zorzan,,2019-05-18,1,Matteo mi devi riproporre il video non sono riuscita a seguirti saltava la linea grazie forza sei tutti noi 😘💚💚,/laura.zorzan?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=270&av=100013534782121&eav=AfbL7PI3lYztvePEi2QBHAxvN3Gx7NIpNF4qK8Hpy3BSWPGOO4kRXCYjLsItngFyLn4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vin Can,ROOT,2019-05-18,2,Roberto pasqual anche se erano 5mila grande il nostro capitano puoi solo rosicare,/vin.can.1217?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301906997365113&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBhZG9Do1NbTYsy&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annita Terruli,Vin Can,2019-05-18,,Vin Can hahahaha ANDATE A FUNGHI,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301906997365113&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBhZG9Do1NbTYsy&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Saverio Ciriminna,ROOT,2019-05-18,1,L'uomo giusto in questo tempo di impazzimento a cui degli italiani non sembra veramente interessare a nessuno,/profile.php?id=100009666930801&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_405336503649873&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAJhVFRR_oAeaZv&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Saverio Ciriminna,2019-05-18,,ma che film hai visto?,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_405336503649873&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAJhVFRR_oAeaZv&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lorenzo Girodo,,2019-05-18,5,Nonostante la pioggia un oceano di gente ❤️,/lorenzo.girodo.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=160&av=100013534782121&eav=Afb1iLk0GuQSzetGtNrdbbKdNvTUUPLIu-yRRVh8HftuQnRAunbc5jqG699wy-l9-7A&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sabina Luzzari,,2019-05-18,1,Gli striscioni sui balconi usateli per asciugarvi le lacrime!!! Zecche!,/sabina.luzzari?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=160&av=100013534782121&eav=Afb1iLk0GuQSzetGtNrdbbKdNvTUUPLIu-yRRVh8HftuQnRAunbc5jqG699wy-l9-7A&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sebastiano Bisicchia,,2019-05-18,2,"Non abbiamo più speranze, tranne te Salvini, sei l'ultima carta da giocare",/sebi59?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=160&av=100013534782121&eav=Afb1iLk0GuQSzetGtNrdbbKdNvTUUPLIu-yRRVh8HftuQnRAunbc5jqG699wy-l9-7A&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Davide Ross,,2019-05-18,1,"il 26 scriviamo la storia!! votiamo lega per mandare a casa sinistroidi, amici degli scafisti e amici delle tasse e precariato!!!! voto alla lega!!!",/david.rollins.5055?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=160&av=100013534782121&eav=Afb1iLk0GuQSzetGtNrdbbKdNvTUUPLIu-yRRVh8HftuQnRAunbc5jqG699wy-l9-7A&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Biolchini,,2019-05-18,3,Grazie capitano Salvini domani ti aspettiamo a Sassuolo avanti così abbiamo voglia di cambiamento,/elena.biolchini.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=160&av=100013534782121&eav=Afb1iLk0GuQSzetGtNrdbbKdNvTUUPLIu-yRRVh8HftuQnRAunbc5jqG699wy-l9-7A&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Florida,,2019-05-18,3,"Complimenti è stato emozionante vorrei tanto che i giovani oggi fossero di nuovo interessati a tornare a amare il proprio paese a credere in qualcuno in qualcosa... No bere, No droga",/angela.florida.908?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=160&av=100013534782121&eav=Afb1iLk0GuQSzetGtNrdbbKdNvTUUPLIu-yRRVh8HftuQnRAunbc5jqG699wy-l9-7A&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pedro Josè Abramini,,2019-05-18,3,Questo è l’amore che noi proviamo per il nostro Capitano.❤️🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹,/josepedro.abramini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=160&av=100013534782121&eav=Afb1iLk0GuQSzetGtNrdbbKdNvTUUPLIu-yRRVh8HftuQnRAunbc5jqG699wy-l9-7A&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Federico Sia,,2019-05-18,3,....FOLLA OCEANICA ...!!.. ...MAI VISTA UNA COSA DEL GENERE ...!!..,/felpo.felpato?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=160&av=100013534782121&eav=Afb1iLk0GuQSzetGtNrdbbKdNvTUUPLIu-yRRVh8HftuQnRAunbc5jqG699wy-l9-7A&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Riccardo Loconte,,2019-05-18,1,Mi fanno ridere quelli che parlano di numeri. Nonostante gli sputtanamenti dei seguaci ai comizi pd moltiplicati al computer.,/riccardo.loconte.7169?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=160&av=100013534782121&eav=Afb1iLk0GuQSzetGtNrdbbKdNvTUUPLIu-yRRVh8HftuQnRAunbc5jqG699wy-l9-7A&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tiziano Orlandi,ROOT,2019-05-18,,In effetti a vedere chi ti vota vengono dei dubbi......sarà mai che sei uno sfigato? Minchia e adesso chi voto? Papà Francesco?,/profile.php?id=100008208158075&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489907321528&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCBz549Pt8iZ-dO&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Stefania Pirola,Tiziano Orlandi,2019-05-18,,"No, tu sei tipo da Renzi",/stefania.pirola.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489907321528&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCBz549Pt8iZ-dO&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolino Riboni,Tiziano Orlandi,2019-05-18,,Vai a trollare a un'altra parte,/profile.php?id=100009108748352&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489907321528&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCBz549Pt8iZ-dO&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisa Turrini,Tiziano Orlandi,2019-05-18,,Autoeliminati,/elisa.turrini.90?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489907321528&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCBz549Pt8iZ-dO&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lorella Camolese,Tiziano Orlandi,2019-05-18,1,Vota pure papa francesco e tutto l'islam,/lorella.camolese?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489907321528&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCBz549Pt8iZ-dO&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tiziano Orlandi,Tiziano Orlandi,2019-05-18,,"Ragazzi ma state bene? Ma li avete visti quelli dei selfies? Siete messi così anche voi? Io voto di sicuro non x Pd o M5S , dico solo da leghista storico che sembriamo una tribù’ di handicappati. E troll lo andate a scrivere a qualcun altro . Idioti",/profile.php?id=100008208158075&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_138489907321528&count=5&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCBz549Pt8iZ-dO&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gerald Pecoraro,ROOT,2019-05-18,3,Facebook is censoring translation from Italian to English again,/profile.php?id=100008748843339&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515043155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA60LsMfsCYmyGS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marco Coruzzi,Gerald Pecoraro,2019-05-18,,"Gerald Pecoraro (((zuckerberg))) They hate Nazi, fascists, lega, alt right They just hate and censor",/profile.php?id=100011182784697&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515043155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA60LsMfsCYmyGS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gerald Pecoraro,Gerald Pecoraro,2019-05-18,,Marco Coruzzi Facebook is the fascist,/profile.php?id=100008748843339&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622515043155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA60LsMfsCYmyGS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Domenico Buono,ROOT,2019-05-18,,"Mai visto un ministro dell'interno con tanti uomini di scorta, hai paura?",/domenico.buono.79?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAohefjRh8oqTnG&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sana Salvatore,Domenico Buono,2019-05-18,,Comunista di chiacchierare,/profile.php?id=100011712917411&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAohefjRh8oqTnG&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Rosaria Capone,Domenico Buono,2019-05-18,,,/mariarosaria.capone.7315?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAohefjRh8oqTnG&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giampaolo Francini,Domenico Buono,2019-05-18,,Certo che può avere paura fa gli interessi degli italiani è l’unico,/giampaolo.francini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAohefjRh8oqTnG&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Liliana Esposito,Domenico Buono,2019-05-18,3,Visto il clima dei centri sociali e gli striscioni fa più che bene. La scorta inutile è quella di Saviano,/profile.php?id=100018196653850&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAohefjRh8oqTnG&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Rosaria Capone,Domenico Buono,2019-05-18,,,/mariarosaria.capone.7315?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAohefjRh8oqTnG&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Rosaria Capone,Domenico Buono,2019-05-18,,,/mariarosaria.capone.7315?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAohefjRh8oqTnG&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Rosaria Capone,Domenico Buono,2019-05-18,,,/mariarosaria.capone.7315?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAohefjRh8oqTnG&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Rosaria Capone,Domenico Buono,2019-05-18,,,/mariarosaria.capone.7315?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAohefjRh8oqTnG&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Rosaria Capone,Domenico Buono,2019-05-18,,,/mariarosaria.capone.7315?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&count=13&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAohefjRh8oqTnG&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tonino Coppola,ROOT,2019-05-18,1,Ma addò stà tutta sta gente. Nu sacc e mariuoli ci stanno di sicuro...,/tonino.coppola?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301908324031647&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC16UBFhCWrWLC9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Tonino Coppola,2019-05-18,1,Tonino Coppola ma vai dall' oculista che non ci vedi più......dalla Rabbia !! ROSICATE !!!,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301908324031647&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC16UBFhCWrWLC9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elvira Pendolino,Tonino Coppola,2019-05-18,1,Non sapete più dove aggrapparvi...,/elvira.pendolino.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301908324031647&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC16UBFhCWrWLC9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tonino Coppola,Tonino Coppola,2019-05-18,,Ladroni,/tonino.coppola?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301908324031647&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC16UBFhCWrWLC9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tonino Coppola,Tonino Coppola,2019-05-18,,Verognatevi.,/tonino.coppola?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301908324031647&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC16UBFhCWrWLC9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tonino Coppola,Tonino Coppola,2019-05-18,,Il visto gallo cedrone stà diventando la barzelletta d'Italia... mr chiacchierone ciarlatano ad uso degli imbecilli.,/tonino.coppola?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301908324031647&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC16UBFhCWrWLC9&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tiziano Vigentini,Domenico Buono,2019-05-18,,Pensa hai cazzi tuoi 😂😂😂,/profile.php?id=100009958022511&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&p=10&count=13&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAYUiXKERqB-CTw +Giuliana Muratori,Domenico Buono,2019-05-18,,La Boldrini che si fida tanto degli extracomunitari ne ha 27 ! Ha paura ?,/giuliana.muratori?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&p=10&count=13&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAYUiXKERqB-CTw +Maria Rosaria Capone,Domenico Buono,2019-05-18,,.......A scemo.....,/mariarosaria.capone.7315?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407410850101091&p=10&count=13&pc=2&pgdir=1&ft_ent_identifier=325209824821404&gfid=AQAYUiXKERqB-CTw +Oana Elisabeta Calapod,,2019-05-18,2,Tanti di noi non sono potuti venire ma ci saremo il 26 maggio !,/oanaelisabeta.calapod?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=170&av=100013534782121&eav=Afb2zQSvrHaLTdUSIJ58alQz_AK8UORDdm5-qD0ZmgyfILkcwPFKI-8m8ivX9k3eEh0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gloria Campesan,,2019-05-18,1,"Caro Ministro Salvini, ho seguito la diretta, dal corteo composto ed educato, ai Suoi saluti finali. Emozionante!!! Grazie di ❤️",/gloria.campesan?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=170&av=100013534782121&eav=Afb2zQSvrHaLTdUSIJ58alQz_AK8UORDdm5-qD0ZmgyfILkcwPFKI-8m8ivX9k3eEh0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Mini,,2019-05-18,1,"A chi mi disse che quando Salvini venne a Prato c'era più persone al matrimonio del suo amico, che non è vero perché la piazza era piena, cosa mi dice ora?????😉😉",/carla.mini.31?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=170&av=100013534782121&eav=Afb2zQSvrHaLTdUSIJ58alQz_AK8UORDdm5-qD0ZmgyfILkcwPFKI-8m8ivX9k3eEh0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ivana Federici,,2019-05-18,1,Caro ministro SALVINI è ora di togliere anche le tasse sulle case. Perché sono state fatte con i nostri SACRIFICI,/profile.php?id=100008722775551&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=170&av=100013534782121&eav=Afb2zQSvrHaLTdUSIJ58alQz_AK8UORDdm5-qD0ZmgyfILkcwPFKI-8m8ivX9k3eEh0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonello Quatrini,,2019-05-18,1,"Matte se non ti impegni di più dove ai preso milioni di voti le condivisioni rimangono a 3 cifre , non molte settimane fa' erano a 4 cifre , vedi un po' che devi fare , hai capito si",/antonello.quatrini.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=170&av=100013534782121&eav=Afb2zQSvrHaLTdUSIJ58alQz_AK8UORDdm5-qD0ZmgyfILkcwPFKI-8m8ivX9k3eEh0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvia Giachino,,2019-05-18,2,"Grande, non poteva essere diversamente, grande uomo grande ministro",/silvia.giachino.71?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=170&av=100013534782121&eav=Afb2zQSvrHaLTdUSIJ58alQz_AK8UORDdm5-qD0ZmgyfILkcwPFKI-8m8ivX9k3eEh0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Adriana Brivio,,2019-05-18,1,"Una manifestazione democratica e pacata, non c’è ne frega degli striscioni, dei cortei contro Salvini, che vogliono solo instigare. W Salvini e W la Lega, compatti al voto del 26 maggio.",/adriana.brivio.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=170&av=100013534782121&eav=Afb2zQSvrHaLTdUSIJ58alQz_AK8UORDdm5-qD0ZmgyfILkcwPFKI-8m8ivX9k3eEh0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vanna Rossetti,,2019-05-18,2,"Sicuramente da ricordare un Italia ordinata pulita e tanta tanta gente Salvini in mezzo a noi , uno di noi complimenti",/profile.php?id=100006838936944&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=170&av=100013534782121&eav=Afb2zQSvrHaLTdUSIJ58alQz_AK8UORDdm5-qD0ZmgyfILkcwPFKI-8m8ivX9k3eEh0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianni Tieni,,2019-05-18,3,Ma come 'zzo fai? Io sarei già schiantato fisicamente da un bel pezzo! Mito 💚💚💚,/gianni.tieni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=280&av=100013534782121&eav=AfalzCyd6q9TrK8M6M7n5i3qZb-KSkgHrBfYXCrCQ6CIjYqiwZHVB6NwPnEDu23p32w&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Freysa Frallallà,,2019-05-18,,"Tu ascolta Il nostro cuore che ha ripreso a battere grazie a te, che ci dai uno spiraglio di speranza",/freysa.frallalla?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=280&av=100013534782121&eav=AfalzCyd6q9TrK8M6M7n5i3qZb-KSkgHrBfYXCrCQ6CIjYqiwZHVB6NwPnEDu23p32w&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Igor Ronchi,,2019-05-18,2,Sei il numero 1!!!! In assoluto non ho mai visto un politico come te!!!! Dai che li mandiamo a casa!!! Te e la meloni al governo e gli altri se ne facessero un ragione!!!!,/igor.ronchi.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=280&av=100013534782121&eav=AfalzCyd6q9TrK8M6M7n5i3qZb-KSkgHrBfYXCrCQ6CIjYqiwZHVB6NwPnEDu23p32w&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Montecalvo,,2019-05-18,,"Siamo garantisti ma via le mele marce, non gli dare lo spunto per attaccarti",/vincenzo.montecalvo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=280&av=100013534782121&eav=AfalzCyd6q9TrK8M6M7n5i3qZb-KSkgHrBfYXCrCQ6CIjYqiwZHVB6NwPnEDu23p32w&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Domenico Barreca,,2019-05-18,1,"Devi ridare CREDIBILITÀ alle forze dell'ordine. Devono avere leggi che li tutelino di più! I delinquenti devono sapere che se arrivano i militari, sono guai seri e non barzellette!",/domenico.b.129?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=280&av=100013534782121&eav=AfalzCyd6q9TrK8M6M7n5i3qZb-KSkgHrBfYXCrCQ6CIjYqiwZHVB6NwPnEDu23p32w&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rita Possoni,,2019-05-18,,Io sto lavorando ti ho seguito in televisione sei sempre grandissimo,/rita.possoni.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=280&av=100013534782121&eav=AfalzCyd6q9TrK8M6M7n5i3qZb-KSkgHrBfYXCrCQ6CIjYqiwZHVB6NwPnEDu23p32w&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefano Pernechele,,2019-05-18,2,Matteo salvini UNICO GRANDE CAPITANO!!!! continua cosi' sei l'unica nostra ancora di salvezza bravoooooooooo,/stefano.pernechele?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=280&av=100013534782121&eav=AfalzCyd6q9TrK8M6M7n5i3qZb-KSkgHrBfYXCrCQ6CIjYqiwZHVB6NwPnEDu23p32w&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Canale,,2019-05-18,11,"Erano anni che non si vedeva un politico così di spessore,forza Matteo",/profile.php?id=100008316428932&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=290&av=100013534782121&eav=AfZsH62MV2zt58i1IE_D6c9OcfJ3kfdSoHVeye-jyzUeVuC0AHViGDKdPJyanwBP6t8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mariagostina Sotgiù,,2019-05-18,2,Matteo sei solo con la camicia! chee piove 🌧 risparmiati! ♥️che la Mamma Celeste ti protegga! T V B♥️♥️♥️,/mariagostina.sotgiu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=290&av=100013534782121&eav=AfZsH62MV2zt58i1IE_D6c9OcfJ3kfdSoHVeye-jyzUeVuC0AHViGDKdPJyanwBP6t8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Piero Corti,,2019-05-18,2,Se c'era il sole non ci stavano nella cerchia dei navigli!!!! Grande capitano!!,/piero.corti.10?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=290&av=100013534782121&eav=AfZsH62MV2zt58i1IE_D6c9OcfJ3kfdSoHVeye-jyzUeVuC0AHViGDKdPJyanwBP6t8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziella Coticelli,,2019-05-18,,Grazie ministro siamo con te... Sono madre di un figlio con disabilità che non trova lavoro... Aiuta i giovani,/graziella.coticelli?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=290&av=100013534782121&eav=AfZsH62MV2zt58i1IE_D6c9OcfJ3kfdSoHVeye-jyzUeVuC0AHViGDKdPJyanwBP6t8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Campani,,2019-05-18,,Che uomo....grandissimo...forza Matteo....oggi milano ti dimostrato che siamo tutti con te💚💚💚💚💚💚,/antonella.campani.75?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=290&av=100013534782121&eav=AfZsH62MV2zt58i1IE_D6c9OcfJ3kfdSoHVeye-jyzUeVuC0AHViGDKdPJyanwBP6t8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mirco Valerio,,2019-05-18,6,Matteo ti vogliamo bene sei uno di noi. Che Dio ti benedica e ti protegga sempre,/mirco.valerio1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=290&av=100013534782121&eav=AfZsH62MV2zt58i1IE_D6c9OcfJ3kfdSoHVeye-jyzUeVuC0AHViGDKdPJyanwBP6t8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marilinda Testa,,2019-05-18,8,"Capitano non sei solo un ministro grandioso! Sei amico,fratello,figlio,marito...di tutti gli italiani onesti!!! Grazie!!!",/marilinda.testa?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=290&av=100013534782121&eav=AfZsH62MV2zt58i1IE_D6c9OcfJ3kfdSoHVeye-jyzUeVuC0AHViGDKdPJyanwBP6t8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Achillea Elisabetta,,2019-05-18,7,"La risposta a quanto crede in te il popolo l'hai vissuta oggi sulla tua pelle in piazza Duomo,da chi non ha potuto esserci e ti ha seguito via Fb ,un delirio tutto per te ...AVANTI COSÌ 💚💚💚",/achillea.elisabetta?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=290&av=100013534782121&eav=AfZsH62MV2zt58i1IE_D6c9OcfJ3kfdSoHVeye-jyzUeVuC0AHViGDKdPJyanwBP6t8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ruggero Mantelli,,2019-05-18,,"Si andate tutti e due al porto! A piantare i meloni, e portate a a presso anche anche quei c.......oni che vi hanno eletto!!!!!",/profile.php?id=100009735632444&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=290&av=100013534782121&eav=AfZsH62MV2zt58i1IE_D6c9OcfJ3kfdSoHVeye-jyzUeVuC0AHViGDKdPJyanwBP6t8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Telch,,2019-05-18,1,"Matteo sei un grande.......nn ci abbondare , ci sono troppe zecche rosse, resisti. Grazie👏👏👏👏",/giovanni.telch?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=290&av=100013534782121&eav=AfZsH62MV2zt58i1IE_D6c9OcfJ3kfdSoHVeye-jyzUeVuC0AHViGDKdPJyanwBP6t8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lilli Tosoni,ROOT,2019-05-18,1,Di Maio è semplicemente geloso e ha paura di Salvini ecco perché vuol far credere di essere paladino del bene!!!!!,/lilli.tosoni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622529043155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBV3WjoUp2PLK57&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Santa De Stefano,Lilli Tosoni,2019-05-18,,Lilli Tosoni chi è Di Mario?.... Poveri illusi,/santa.destefano.56?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622529043155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBV3WjoUp2PLK57&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lilli Tosoni,Lilli Tosoni,2019-05-18,,"Santa De Stefano correggo, grazie!",/lilli.tosoni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622529043155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBV3WjoUp2PLK57&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mimma Marzolo,,2019-05-18,2,"Salvini l,italia ancora una volta ha dimostrato quanto sei importante per gli italiani ora è sempre",/mimma.marzolo.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=180&av=100013534782121&eav=AfZpq5qOBJR1DkmK9CywZlymiduQM4IbrBXWL28ZILlxj2VD0BUOx0-aUymIIK1u1C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marconi Mara,,2019-05-18,1,Bene sono Conte ha che sia andato bene adesso tutti dobbiamo andare a votare Lega,/maramarconi1950?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=180&av=100013534782121&eav=AfZpq5qOBJR1DkmK9CywZlymiduQM4IbrBXWL28ZILlxj2VD0BUOx0-aUymIIK1u1C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vincenzo Mangini,,2019-05-18,1,Pensa che qualcuno nella pagina dei cinque stelle dice che sei stato altamente contestato e fischiato,/vincenzo.mangini.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=180&av=100013534782121&eav=AfZpq5qOBJR1DkmK9CywZlymiduQM4IbrBXWL28ZILlxj2VD0BUOx0-aUymIIK1u1C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Morelli,,2019-05-18,17,Non c ' erano dubbi!!!,/monica.morelli.3133?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=180&av=100013534782121&eav=AfZpq5qOBJR1DkmK9CywZlymiduQM4IbrBXWL28ZILlxj2VD0BUOx0-aUymIIK1u1C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Oreste Di Bello,,2019-05-18,1,".. intanto entrano altri extracomunitari a Lampedusa, grazie ai ""magna magna""",/oreste.dibello?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=180&av=100013534782121&eav=AfZpq5qOBJR1DkmK9CywZlymiduQM4IbrBXWL28ZILlxj2VD0BUOx0-aUymIIK1u1C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriele Ucci,,2019-05-18,2,Spettacolare!!!!! Forza mancano pochi giorni poi il signorino Di Maio e company vanno tutti a casa.,/gabriele.ucci.73?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=180&av=100013534782121&eav=AfZpq5qOBJR1DkmK9CywZlymiduQM4IbrBXWL28ZILlxj2VD0BUOx0-aUymIIK1u1C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesco Triolo,,2019-05-18,1,"I 5 stelle hanno la sindrome del pd, quindi no grazie",/francesco.triolo.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=180&av=100013534782121&eav=AfZpq5qOBJR1DkmK9CywZlymiduQM4IbrBXWL28ZILlxj2VD0BUOx0-aUymIIK1u1C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucio Santagata,,2019-05-18,3,"Nonostante la pioggia incessante , una grande affluenza ! Bravi e avanti tutta",/lucio.santagata?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=180&av=100013534782121&eav=AfZpq5qOBJR1DkmK9CywZlymiduQM4IbrBXWL28ZILlxj2VD0BUOx0-aUymIIK1u1C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luca Udeschini,,2019-05-18,1,Quando PD e Sindacati vanno in piazza ci sono 4 gatti e parlano di centinaia di migliaia di persone in piazza. Io oggi sotto la pioggia ho visto piazza Duomo stracolma e nn c’è un TG che dice i numeri dell’affluenza. Ditemi voi se la stampa nn è manipolata.🤩,/luca.udeschini.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=180&av=100013534782121&eav=AfZpq5qOBJR1DkmK9CywZlymiduQM4IbrBXWL28ZILlxj2VD0BUOx0-aUymIIK1u1C4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianfranco Laiti,ROOT,2019-05-18,2,mai farsi rubare la speranza.....tu sei la certezza di un mondo migliore,/gianfranco.laiti.376?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425870701578134&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBB9Ubm4Io81Jp8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Gianfranco Laiti,2019-05-18,,di un mondo peggiore,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425870701578134&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBB9Ubm4Io81Jp8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Eleonora Stoimenova,,2019-05-18,3,"E vaiiiii Capitano,e vai Gladiatore,sei la salvezza di Italia",/eleonora.stoimenova.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=190&av=100013534782121&eav=Afb8ujhX1zSgB4ot5iFHMCGTkptO3rDJRVvIELoEpspHebfBwKitBqef9cJFDjp-yjA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Renato Paitoni,,2019-05-18,4,In 70 non ho mai visto UN GRANDE UOMO COME TE GRANDE!!!!!,/renato.paitoni?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=190&av=100013534782121&eav=Afb8ujhX1zSgB4ot5iFHMCGTkptO3rDJRVvIELoEpspHebfBwKitBqef9cJFDjp-yjA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ezio Siino,,2019-05-18,1,Tali e quali alle piazze del pd...AVANTI COSI' CAPITANO,/ezio.siino?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=190&av=100013534782121&eav=Afb8ujhX1zSgB4ot5iFHMCGTkptO3rDJRVvIELoEpspHebfBwKitBqef9cJFDjp-yjA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Dinero,,2019-05-18,1,L'Italia è innamorata di lei. A quei pochi che l'odiano...non resta che piangere.,/profile.php?id=100009281518055&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=190&av=100013534782121&eav=Afb8ujhX1zSgB4ot5iFHMCGTkptO3rDJRVvIELoEpspHebfBwKitBqef9cJFDjp-yjA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Lugoboni,,2019-05-18,4,Grande ...dai dai che vinciamo ...che litalia si sistema ..i giovanu matteo guarda che robe che succedono ...,/patrizia.lugoboni?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=190&av=100013534782121&eav=Afb8ujhX1zSgB4ot5iFHMCGTkptO3rDJRVvIELoEpspHebfBwKitBqef9cJFDjp-yjA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Cossu,,2019-05-18,1,TANTA cattiveria e tanto livore nn può che scatenare l'effetto contrario nella gente. La calunnia vi si rivolterà contro.,/profile.php?id=100010990144677&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=190&av=100013534782121&eav=Afb8ujhX1zSgB4ot5iFHMCGTkptO3rDJRVvIELoEpspHebfBwKitBqef9cJFDjp-yjA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Yu Blas,,2019-05-18,1,👏👏👏👏👏👏 PASSANDO HO VISTO LA FORNERO CHE VENDEVA I GELATI SUL FRIGO BIKE😂😂😂😂😋,/yuri.balasso?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=190&av=100013534782121&eav=Afb8ujhX1zSgB4ot5iFHMCGTkptO3rDJRVvIELoEpspHebfBwKitBqef9cJFDjp-yjA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vera Tudini,,2019-05-18,1,è stato da brividi!!!! Grande Matteo andiamo a conquistare l'Europa!!!!!!!!!,/vera.tudini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=190&av=100013534782121&eav=Afb8ujhX1zSgB4ot5iFHMCGTkptO3rDJRVvIELoEpspHebfBwKitBqef9cJFDjp-yjA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianna Montuori,,2019-05-18,1,"no!! ma pensa un pò che i rossi hanno detto che a questo raduno solo quattro gatti.grande Salvini,l'Italia quella che ragiona è con te",/gianna.montuori?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=190&av=100013534782121&eav=Afb8ujhX1zSgB4ot5iFHMCGTkptO3rDJRVvIELoEpspHebfBwKitBqef9cJFDjp-yjA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessio Bertini,,2019-05-18,2,Oggi vedendo piazza Duomo ho avuto la conferma che veramente siamo tantissimi ma dobbiamo esserlo ancora di piu' il 26 maggio ......Sono molto molto orgogliosa del nostro Ministro Salvini ma anche di noi Italiani che finalmente abbiamo rialzato la testa perche' amiamo tantissimo il Nostro Paese .....i commenti beceri di quelli che non la pensano come noi io li snobbo e voi ? Viva sempre e a grande voce il Popolo Italiano e il nostro Capitano 🇮🇪.Antonietta .,/alessio.bertini.376?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=190&av=100013534782121&eav=Afb8ujhX1zSgB4ot5iFHMCGTkptO3rDJRVvIELoEpspHebfBwKitBqef9cJFDjp-yjA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vincenzo Matta,ROOT,2019-05-18,2,Lui qua può prendere i voti a milano perché nn vieni giù che t fanno nuovo,/matta.vincenzo.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663926488562&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBsg74rWoVOkYgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Grazia Pascoletti,Vincenzo Matta,2019-05-18,,😂😂😂😂,/mariagrazia.pascoletti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663926488562&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBsg74rWoVOkYgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marinella Muccini,Vincenzo Matta,2019-05-18,,State nella vostra 💩💩💩💩💩,/marinella.muccini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663926488562&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBsg74rWoVOkYgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Enzo Rosa,Vincenzo Matta,2019-05-18,,Te ne accorgerai quanto sei buffone quando tua sorella metterà il burqa! Ma quanto siete deficienti!!!,/enzo.rosa.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663926488562&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBsg74rWoVOkYgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Felice Vitagliano,Vincenzo Matta,2019-05-18,,VINCENZO MATTA VAI A VEDERE TUA SORELLA CHE STA FACENDO ADESSO....,/vitafeliciano?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663926488562&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBsg74rWoVOkYgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luciano Biasio,Vincenzo Matta,2019-05-18,,"Vincenzo Matta i voti che Salvini prenderà al nord,basteranno x mettervi tutti a tacere!",/luciano.biasio.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663926488562&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBsg74rWoVOkYgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marcello Gulotta,Vincenzo Matta,2019-05-18,1,Vincenzo Matta un suo pensiero che SALVINI FAREBBE MALE IN SICILIA IO DA PALERMITANO LA PENSO TUTTO IL CONTRARIO DI LEI. MI SPIACE CHE DA COME VEDO DAL SUO PROFILO IN QUANTO UNA PERSONA DELLE ISTITUZIONI LEI SI E ESPRESSO IN UN MODO POCO FELICE ..E.STIA PUR SICURO CHE SALVINI AL SUD E BEN ACCOLTO SOPRATUTTO A PALERMO ..LA SALUTO E UN BUON LAVORO..,/marcello.gulotta.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663926488562&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBsg74rWoVOkYgw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna Petta,ROOT,2019-05-18,1,Ho appena visto rai news: la piazza era gremita ma non piena ...ah ah ah,/profile.php?id=100008154671396&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265842813668848&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDAEPHdfs-CEWxv&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,Anna Petta,2019-05-18,,"Anna Petta la foto che gira é di diverse ore prima della manifestazione. Per chi non é cieco, si vede benissimo che il palco é ancora vuoto.",/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265842813668848&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDAEPHdfs-CEWxv&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +La Lu,,2019-05-18,1,In tv nulla si e' visto...na ci sono i cellulari e fb ORA! 💪Matteo,/luisa.cocchi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=200&av=100013534782121&eav=Afae39fU3Si1odvfY-00eLkp8uQgU_oeP-pIJGRfsnztHrJ-JxKYjXlwTu5YhAvAI-8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Zandri,,2019-05-18,2,Piazza vuota diranno in tv!!!!! Grandi italiani! Graxie!,/monica.zandri?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=200&av=100013534782121&eav=Afae39fU3Si1odvfY-00eLkp8uQgU_oeP-pIJGRfsnztHrJ-JxKYjXlwTu5YhAvAI-8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Amila Rajapaksha,,2019-05-18,1,il prossimo presidente in italia🤜 rispetta il Grande Capitano ✊,/amila.rajapaksha.56?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=200&av=100013534782121&eav=Afae39fU3Si1odvfY-00eLkp8uQgU_oeP-pIJGRfsnztHrJ-JxKYjXlwTu5YhAvAI-8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabio Nicoletti,,2019-05-18,2,È stato un pomeriggio commovente. Speriamo davvero nel buon senso,/fabio.nicoletti2?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=200&av=100013534782121&eav=Afae39fU3Si1odvfY-00eLkp8uQgU_oeP-pIJGRfsnztHrJ-JxKYjXlwTu5YhAvAI-8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giusy Fragale,,2019-05-18,2,"Non siamo ""leghisti "" ma molto di più... Italiani fieri ! Grande Ministro",/giusy.fragale.92?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=200&av=100013534782121&eav=Afae39fU3Si1odvfY-00eLkp8uQgU_oeP-pIJGRfsnztHrJ-JxKYjXlwTu5YhAvAI-8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Otty Marco Masini,,2019-05-18,4,Senza contare chi non è potuto venire questa è solo una piccolissima parte di chi è con te 🔝💪🏻,/ottyemarco.masini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=200&av=100013534782121&eav=Afae39fU3Si1odvfY-00eLkp8uQgU_oeP-pIJGRfsnztHrJ-JxKYjXlwTu5YhAvAI-8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Chango Jenny,,2019-05-18,1,"Io c'ero e nonostante quelli dei centri sociali che ci fischiavano e insultavano ,da grande capitano che si rispetti a fatto come non esistessero e non ha insultato nessuno ... ha fatto il suo discorso in tranquillità",/jenny.campeotto?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=200&av=100013534782121&eav=Afae39fU3Si1odvfY-00eLkp8uQgU_oeP-pIJGRfsnztHrJ-JxKYjXlwTu5YhAvAI-8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ray Gila,,2019-05-18,2,"Vai avanti a testa alta Matteo! La gente per bene davvero, quella che ama il paese e che rispetta le tradizioni dei genitori e dei nonni, che rispetta i sacrifici che ci hanno portati fino a qui, come paese e come popolo, quelle persone sono con te e sono pronte a seguirti e sostenerti. Il tuo sacrificio e la tua dedizione meritano tutto il nostro amore! Col sorriso, sempre!",/profile.php?id=100010559882559&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=200&av=100013534782121&eav=Afae39fU3Si1odvfY-00eLkp8uQgU_oeP-pIJGRfsnztHrJ-JxKYjXlwTu5YhAvAI-8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelo Pina Altamura,,2019-05-18,1,Bisogna cambiare questa europa dei padroni basta chiachiere bisogna dimostrare che cisiamo anche noi non solo germania o francia loro andavano bene solo con renzi buel maledetto gufo basta stranieri siamo stufi non che dicono che noi siamo razzisti noi vogliamo la nostra tranquilita' ok,/angelopina.altamura?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=200&av=100013534782121&eav=Afae39fU3Si1odvfY-00eLkp8uQgU_oeP-pIJGRfsnztHrJ-JxKYjXlwTu5YhAvAI-8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luca Pinchera,ROOT,2019-05-18,3,Ministro vai avanti così stai facendo un ottimo lavoro X tutti gli italiani ma soprattutto x il bene del paese via mafia Ndrangheta e camorra mi fa schifo lo stato vince in bocca al lupo buon lavoro ministro,/luca.pinchera.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438421890052180&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDjJRLqeW7-J_iH&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Luca Pinchera,2019-05-18,,quale lavoro?Non c'é mai al ministero,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438421890052180&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDjJRLqeW7-J_iH&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luca Pinchera,Luca Pinchera,2019-05-18,,Giangiacomo Carretta in mezzo al popolo italiano a fare campagna elettorale,/luca.pinchera.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438421890052180&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDjJRLqeW7-J_iH&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Claudio Gorreri,,2019-05-18,2,Forza Matteo col cappellino delle frecce tricolori.....alla conquista d’Europa.....,/claudio.gorreri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=300&av=100013534782121&eav=AfZJd0zwKQDl7lfvUonTlqd526G_RHsRfINg6E7eOrRwowfhlgGXRiD9k1TzncBu1T0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bright Mensah,,2019-05-18,2,I love you so much daddy,/bright.mensah.1690671?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=300&av=100013534782121&eav=AfZJd0zwKQDl7lfvUonTlqd526G_RHsRfINg6E7eOrRwowfhlgGXRiD9k1TzncBu1T0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Corrado Signorini,,2019-05-18,3,"Matteo, sei un Grande, mi hai fatto commuovere!!! Viva l'Italia e tutti Noi!!!! Continua così e conquisterà il Mondo!",/corrado.signorini.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=300&av=100013534782121&eav=AfZJd0zwKQDl7lfvUonTlqd526G_RHsRfINg6E7eOrRwowfhlgGXRiD9k1TzncBu1T0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elide Belingheri,,2019-05-18,6,"Che Bella la Mia città natale,piena di Gente perbene!😍💚💚💚💚",/elide.belingheri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=300&av=100013534782121&eav=AfZJd0zwKQDl7lfvUonTlqd526G_RHsRfINg6E7eOrRwowfhlgGXRiD9k1TzncBu1T0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Italo Formosa,,2019-05-18,2,"Questa è una delle tante risposte civili, libere, e democratiche del VERO popolo italiano! I lenzuoli gli striscioni gli insulti le inchieste della magistratura lasciamole ai trinariciuti della sinistra!",/profile.php?id=100012864332771&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=300&av=100013534782121&eav=AfZJd0zwKQDl7lfvUonTlqd526G_RHsRfINg6E7eOrRwowfhlgGXRiD9k1TzncBu1T0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Beniamino Pozza,,2019-05-18,2,"I banditi CATTOCOMUNISTi, filo massoni, filo islamici, faranno disastri, ocio!",/beniamino.pozza?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=300&av=100013534782121&eav=AfZJd0zwKQDl7lfvUonTlqd526G_RHsRfINg6E7eOrRwowfhlgGXRiD9k1TzncBu1T0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elide Belingheri,,2019-05-18,5,Hai rosiconi che dicono che hai solo persone anziane che ti seguono vorrei che vedessero questa Piazza!😊,/elide.belingheri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=300&av=100013534782121&eav=AfZJd0zwKQDl7lfvUonTlqd526G_RHsRfINg6E7eOrRwowfhlgGXRiD9k1TzncBu1T0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Katia Antonioli,ROOT,2019-05-18,1,Dove sono le 100 mila persone quattro gatti per tutti questi super,/katia.antonioli.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265833473669782&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAXR8zyGyHtl428&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,Katia Antonioli,2019-05-18,,Katia Antonioli la foto che gira é di diverse ore prima della manifestazione.,/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265833473669782&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAXR8zyGyHtl428&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luigi Sensi,Katia Antonioli,2019-05-18,1,"Katia Antonioli quale 100mila,200mila vorrai dire,certo solo 4 gatti di più non ci stavano,per non calpestarli ha dovuto prenderli in braccio,MIAOOOOOO,te rode ehhhh...",/sapori.disanvalentino.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265833473669782&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAXR8zyGyHtl428&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mariarosa Tarabella,Katia Antonioli,2019-05-18,,"Katia Antonioli e te pareva, che una vedeva bene..... Si accontenti x il momento,",/mariarosa.tarabella.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265833473669782&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAXR8zyGyHtl428&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Francesca Farina,,2019-05-18,1,Ti seguo da Londra!! Sei l'unica speranza che abbiamo per un futuro migliore!,/francesca.farina.5623?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=210&av=100013534782121&eav=AfYVl9abfdCqtNRtKlHPpptHy3qq8bLNbjvwDs8sIo3slD8ND76pz9BihlIMUq-3cdc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emiliana del Ricco,,2019-05-18,2,Non mollare Matteo forza avanti cosi sei l'ultima speranza,/emiliana.delricco?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=210&av=100013534782121&eav=AfYVl9abfdCqtNRtKlHPpptHy3qq8bLNbjvwDs8sIo3slD8ND76pz9BihlIMUq-3cdc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabrizia Bortolozzo,,2019-05-18,1,Perché ti amiamo? perché difendi il tuo popolo e la nostra bandiera.......,/fabrizia.bortolozzo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=210&av=100013534782121&eav=AfYVl9abfdCqtNRtKlHPpptHy3qq8bLNbjvwDs8sIo3slD8ND76pz9BihlIMUq-3cdc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Zagheno,,2019-05-18,3,"Questa è litalia vera ,be non fa notizia ,se c'erano 10 dei centri sociali sicuramente avevano un enorme successo ,forza Salvini e le brave persone",/giovanni.zagheno?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=210&av=100013534782121&eav=AfYVl9abfdCqtNRtKlHPpptHy3qq8bLNbjvwDs8sIo3slD8ND76pz9BihlIMUq-3cdc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Andriani,,2019-05-18,1,"C'ERA ANCHE IL PIDIOTA , CALENDA RIO, TRAVESTITO DA ZORRO, SUL BALCONE!!!",/giuseppe.andriani.3591?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=210&av=100013534782121&eav=AfYVl9abfdCqtNRtKlHPpptHy3qq8bLNbjvwDs8sIo3slD8ND76pz9BihlIMUq-3cdc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Tonin,,2019-05-18,2,Io ti rivoto ma maiiiii piuuuuuuù coi 5 stelle!!!! Fuori dalle balleeeeee ti pregoooooo don mattiiiiiiiii,/marco.tonin.509?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=210&av=100013534782121&eav=AfYVl9abfdCqtNRtKlHPpptHy3qq8bLNbjvwDs8sIo3slD8ND76pz9BihlIMUq-3cdc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Simone Cambareri,,2019-05-18,1,Se leggete Repubblica Hillary è ancora in vantaggio 🙈,/simone.cambareri?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=210&av=100013534782121&eav=AfYVl9abfdCqtNRtKlHPpptHy3qq8bLNbjvwDs8sIo3slD8ND76pz9BihlIMUq-3cdc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Concetta Bussolari,,2019-05-18,1,Io sono siciliana ma sono orgogliosa di salvini nn mollare sei grande Matteo 👏👏,/concetta.bussolari?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=210&av=100013534782121&eav=AfYVl9abfdCqtNRtKlHPpptHy3qq8bLNbjvwDs8sIo3slD8ND76pz9BihlIMUq-3cdc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Eleonora Cardia,,2019-05-18,,Tutti i politici della sinistra in televisione al TG/5 ti sparlano....certo che gli bruciaaa... stanno morendo ahahahah 😁😁😁,/MariaEleonora61?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=210&av=100013534782121&eav=AfYVl9abfdCqtNRtKlHPpptHy3qq8bLNbjvwDs8sIo3slD8ND76pz9BihlIMUq-3cdc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ele Bi,ROOT,2019-05-18,5,SALVINI FAI ATTENZIONE. ..non uscire dal governo per nessun motivo...stanno aspettando solo quello. ...!!!!,/eleonora.bini.100?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366820554178054&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDTInRSogW9jH0j&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Barbara Sacchini,Ele Bi,2019-05-18,1,Deve uscire invece. I 5 stelle senza Salvini non vedranno più il governo. Invece Salvini governerà col cdx come è giusto e naturale che sia,/barbara.sacchini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366820554178054&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDTInRSogW9jH0j&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosi Dalla Porta,Ele Bi,2019-05-18,1,Matteo ha capito il giochetto del grillino antipatico,/rossi.dallaporta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366820554178054&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDTInRSogW9jH0j&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luciana Boniforti,Ele Bi,2019-05-18,,"no nn devi mollare, aspettano solo quelli gli incapaci stellati per poi dare la colpa a te della caduta.. lasciali rosicare e aspetta che siano loro a voler farlo cadere",/luciana.boniforti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366820554178054&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDTInRSogW9jH0j&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luciana Nicolazzi,ROOT,2019-05-18,2,Intanto la Sea Watch che ha bandiera olandese è entrata in acque italiane e si sta avviando a Lampedusa.stanno facendo quello che vogliono,/lucini3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622582133155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDapcH8_Jdu3U6i&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sergio Girardi,Luciana Nicolazzi,2019-05-18,1,Luciana Nicolazzi grazie alle stellè cadenti,/sergio.girardi5647?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622582133155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDapcH8_Jdu3U6i&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ron Sidoti,ROOT,2019-05-18,1,Matteo Salvini Premier...in Milan 10 Thousand people...to see the warrior..Matteo....great Minister..the people love him...God Bless Matteo and his family.....Thumbs UP for Italy..,/profile.php?id=100009165623486&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_124237128774627&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCibTxW9GLnI5ZH&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Giusi Sidoti,Ron Sidoti,2019-05-18,,Ron Sidoti mi spiace Ron ti arrivano notizie distorte forse al massimo erano 10000...diecimila...Per fortuna forse le persone cominciano a capire che devono prendere le distanze...,/silvana.sidoti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_124237128774627&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCibTxW9GLnI5ZH&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Curti,,2019-05-18,1,Capitanooooo...puoi chiudere anche la 90 e la 91???? Ogni giorno sbarchi ovunque,/andrea.curti.948?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=310&av=100013534782121&eav=AfZaptvKEMT6JZGyG1eu-V7rDHWuWhc6-TMfNR_wBVU831PKDipDHGsx9iIRlwPO4Q0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelizé GlamourEvent,,2019-05-18,1,PER CAMBIARE L'ITALIA E L'EUROPA VOTIAMO LEGA. FORZA Matteo Salvini,/angelize.glamourevent?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=310&av=100013534782121&eav=AfZaptvKEMT6JZGyG1eu-V7rDHWuWhc6-TMfNR_wBVU831PKDipDHGsx9iIRlwPO4Q0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Algerab,,2019-05-18,11,Mai una parola contro i 5 stelle...UN GRANDE E UN VERO SIGNORE !!!!...La differenza anche in QUESTO !!!!,/carla.balgera?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=310&av=100013534782121&eav=AfZaptvKEMT6JZGyG1eu-V7rDHWuWhc6-TMfNR_wBVU831PKDipDHGsx9iIRlwPO4Q0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandra Vazzana,,2019-05-18,1,Grazie a te.. Incantevole Capitano.. Mi hai ridato la forza ed il coraggio di essere italiana e di rimanere in Italia... 😘😘😘😘 Fino a che tu sarai al governo io sarò al tuo fianco.. A vita Salvini.. ❤️❤️❤️❤️,/alessandra.vazzana1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=310&av=100013534782121&eav=AfZaptvKEMT6JZGyG1eu-V7rDHWuWhc6-TMfNR_wBVU831PKDipDHGsx9iIRlwPO4Q0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Manero,,2019-05-18,31,Dedicato a tutti i media che non hanno trasmesso un minuto di piazza d'uomo di milano per favorire i loro padroncini del PD.L atteggiamento di censura mediatica e fascista e di regime e non la lega.Vergogna,/manero.manero.73?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=310&av=100013534782121&eav=AfZaptvKEMT6JZGyG1eu-V7rDHWuWhc6-TMfNR_wBVU831PKDipDHGsx9iIRlwPO4Q0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pinella Luciano,,2019-05-18,2,"sei la nostra forza, e noi siamo la tua.grande,ascolta tutti",/pinella.luciano.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=310&av=100013534782121&eav=AfZaptvKEMT6JZGyG1eu-V7rDHWuWhc6-TMfNR_wBVU831PKDipDHGsx9iIRlwPO4Q0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emilio Francesco Carlomagno,,2019-05-18,4,Le persone per bene riconoscono la serietà dalla pagliacceria. Questo è il motivo perchè salvini vincerà..perchè è una persona seria e la maggioranza degli italiani è ancora tra le persone serie esistenti in Italia,/emiliofrancescocarlomagno?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=310&av=100013534782121&eav=AfZaptvKEMT6JZGyG1eu-V7rDHWuWhc6-TMfNR_wBVU831PKDipDHGsx9iIRlwPO4Q0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Camelia Mirela Maris,,2019-05-18,8,Sentire l'amore e rispetto per un politico negli ultimi decenni è cosa inaudita. Grazie Matteo Salvini di farci ricredere nella politica. Ti amiamo e rispettiamo per come ci rappresenti e per la tua forza da vero Capitano.,/profile.php?id=100014984657064&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=310&av=100013534782121&eav=AfZaptvKEMT6JZGyG1eu-V7rDHWuWhc6-TMfNR_wBVU831PKDipDHGsx9iIRlwPO4Q0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Gionny,ROOT,2019-05-18,,Peccato non essere presente per la distanza tra Milano e le isole Egadi Levanzo Favignana Marettimo.,/giovanni.gionny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301902510698895&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCRg9u6I7YMCCZq&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giovanni Gionny,Giovanni Gionny,2019-05-18,1,Vi mando il tramonto dell'isola di Favignana in segno di pace amore serenità per tutti gli amici di Matteo,/giovanni.gionny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301902510698895&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCRg9u6I7YMCCZq&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ninni Gelardi,ROOT,2019-05-18,4,"Eravate 199.999, con il Sinistronzo calenda avere raggiunto 200.000. Ringrsziamolo",/ninni.gelardi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366816417511801&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBPmQJdO-u9kIs3&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Donatella Boscolo,Ninni Gelardi,2019-05-18,,💚,/donatella.boscolo.50?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366816417511801&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBPmQJdO-u9kIs3&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ivan Ferro,ROOT,2019-05-18,,SE FOSSI UN COMUNISTA.... DUE DOMANDE ME LE FAREI !!!,/ivan.ferro.5811?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622567283155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAfOy4iB7JU0ZEz&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tomas Maniero,Ivan Ferro,2019-05-18,,Solo due?io 49milioni,/tomas.maniero?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622567283155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAfOy4iB7JU0ZEz&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luigi Abbate,Ivan Ferro,2019-05-18,,Tomas Maniero 49milioni al tempo di Bossi &company......Buona serata e sì goda la vita.....Biserka Abbate e Luigi e Toby 💐💐💐💐💐💐,/luigi.abbate.31?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622567283155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAfOy4iB7JU0ZEz&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Franca Vellone,,2019-05-18,,"E quanti siamo rimasti a casa, a seguire il nostro capitano, ma col❤ eravamo in quella piazza con voi.",/profile.php?id=100014699356495&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=220&av=100013534782121&eav=AfY5lGvPGUqJHAd8IaY7h1eu_Wfvgdo97C336NmINS6NvjVVetfD04qli5XWf3ow0cQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Domenico Di Tomaso,,2019-05-18,1,Oggi a Milano il tasso di ignoranza è arrivato alle stelle.,/dombilliejoe?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=220&av=100013534782121&eav=AfY5lGvPGUqJHAd8IaY7h1eu_Wfvgdo97C336NmINS6NvjVVetfD04qli5XWf3ow0cQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Oscar Pozzoli,,2019-05-18,,"Be certamente non sono i soliti quattro gatti del pd , portati con i pulman e le bandiere rosse",/oscar.pozzoli.75?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=220&av=100013534782121&eav=AfY5lGvPGUqJHAd8IaY7h1eu_Wfvgdo97C336NmINS6NvjVVetfD04qli5XWf3ow0cQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Garnarolo,,2019-05-18,,E anche molto interessanti tutti i commenti giornalistici staremo a vedere lì eravate in tanti e poi vedremo il verdetto quale sarà e ci faremo una bella risata sopra,/raffaella.garnarolo.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=220&av=100013534782121&eav=AfY5lGvPGUqJHAd8IaY7h1eu_Wfvgdo97C336NmINS6NvjVVetfD04qli5XWf3ow0cQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Selman Hasa,,2019-05-18,,Che meraviglia essere li in mezzo alla tana gente per bene. Complimenti a tutti. Viva Lega Viva Matteo Salvini,/selmanhasa?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=220&av=100013534782121&eav=AfY5lGvPGUqJHAd8IaY7h1eu_Wfvgdo97C336NmINS6NvjVVetfD04qli5XWf3ow0cQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Onelia Gherardelli,,2019-05-18,,"Ho visto che i sinistri ti hanno ritrovato il pupazzetto di Zorro, ma non fidarti, ho visto la ""panza"" ...per me sotto sotto si nasconde il sergente Garcia 😛😜",/onelia.gherardelli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=220&av=100013534782121&eav=AfY5lGvPGUqJHAd8IaY7h1eu_Wfvgdo97C336NmINS6NvjVVetfD04qli5XWf3ow0cQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elisabetta Muntoni,,2019-05-18,,L'Italia del buon senso...Fiera di votare Lega❤💖,/elisabetta.muntoni.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=220&av=100013534782121&eav=AfY5lGvPGUqJHAd8IaY7h1eu_Wfvgdo97C336NmINS6NvjVVetfD04qli5XWf3ow0cQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gaetano Panico,ROOT,2019-05-18,21,5 stelle =pd,/gaetano.panico.900?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325210068154713&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCZ29GkKQlOHElb&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mary Nicoletti,Gaetano Panico,2019-05-18,,se i 5 stelle si mettono col pd non li voto piu devono restare insieme alla lega,/mary.nicoletti.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325210068154713&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCZ29GkKQlOHElb&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolo Ganzerli,ROOT,2019-05-18,2,"Falla più dal basso, Mattè, che anche da questa prospettiva si vede che siete pochi😂 Pagliacci!",/paolo.ganzerli.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265838607002602&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBLYIGE758Gd41w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mario Bartolomei,Paolo Ganzerli,2019-05-18,,Paolo Ganzerli,/mario.bartolomei.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265838607002602&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBLYIGE758Gd41w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Paolo Ganzerli,2019-05-18,,Paolo Ganzerli andate dall' oculista che vi siete accecati dalla....RABBIA !! 😂😂😂 SALVINI FOREVER💚💖🍾🍾,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265838607002602&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBLYIGE758Gd41w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Claudio Gatti,ROOT,2019-05-18,15,Numero 1 vai con la Meloni basta 5 stelle,/claudio.leonfr?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325212684821118&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDEyvynYHOl4AK5&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Paola Violi,Claudio Gatti,2019-05-18,1,Andiamo a governare l'Europa e l'Italia con Giorgia 🇮🇹,/mpvioli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325212684821118&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDEyvynYHOl4AK5&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Claudio Gatti,Claudio Gatti,2019-05-18,,Maria Paola Violi vero,/claudio.leonfr?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325212684821118&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDEyvynYHOl4AK5&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Calierno,,2019-05-18,,Quando il gatto non può arrivare al lardo dice che è rancido.la piazza era piena di persone venute da tutt'italia e anche dall:estero. Il 26 è vicino. Si vedrà,/silvanacalierno23?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=230&av=100013534782121&eav=AfbcjVA9vJlLcaZPYhz-nStRbU-roKXNjWJ7Y7AYa0WK3LUfYLhauw4676uFJ699p5U&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +La Mile,,2019-05-18,1,Orgogliosa di poter dire io c’ero! Emozione unica!,/Me7278?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=230&av=100013534782121&eav=AfbcjVA9vJlLcaZPYhz-nStRbU-roKXNjWJ7Y7AYa0WK3LUfYLhauw4676uFJ699p5U&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loredana Marchini,,2019-05-18,,Grande Matteo!!! Non avevo dubbi di questo risultato! Il 26 maggio eliminiamo le stelline e che i sinistroidi si estinguano man mano!!!,/loredana.marchini.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=230&av=100013534782121&eav=AfbcjVA9vJlLcaZPYhz-nStRbU-roKXNjWJ7Y7AYa0WK3LUfYLhauw4676uFJ699p5U&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Vergano,,2019-05-18,,Salvini un vero signore che non ha bisogno di starnazzare contro l’alleato!!!,/anna.vergano.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=230&av=100013534782121&eav=AfbcjVA9vJlLcaZPYhz-nStRbU-roKXNjWJ7Y7AYa0WK3LUfYLhauw4676uFJ699p5U&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Di Mauro,,2019-05-18,1,Saremo in tanti...sempre più numerosi..l'ITALIA Sana che cresce !!!!! Succede a chi ci crede!! Avanti TUTTA!!!!,/lauradimauro?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=230&av=100013534782121&eav=AfbcjVA9vJlLcaZPYhz-nStRbU-roKXNjWJ7Y7AYa0WK3LUfYLhauw4676uFJ699p5U&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franca Zanoli,,2019-05-18,13,Davvero senza parole grandissimo. ..manda tutti a casa,/franca.zanoli.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=230&av=100013534782121&eav=AfbcjVA9vJlLcaZPYhz-nStRbU-roKXNjWJ7Y7AYa0WK3LUfYLhauw4676uFJ699p5U&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Vidoni,,2019-05-18,,"Ora aspettiamo il grande raduno del PSE...Loro si riuniscono all' Europarlamento sulle poltrone milionarie!!!Oppure il raduno insesistente dei M5S in Europa, con chi sono alleati all'Europarlamento?!? Ah,si fuori dall 'Italia non li caga nessuno!!!",/Andreavidoni38?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=230&av=100013534782121&eav=AfbcjVA9vJlLcaZPYhz-nStRbU-roKXNjWJ7Y7AYa0WK3LUfYLhauw4676uFJ699p5U&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Celeghin,,2019-05-18,,"e i telegiornali hanno dato più spazio alle opposizioni e agli striscioni, alla faccia della democrazia!",/daniela.celeghin.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=230&av=100013534782121&eav=AfbcjVA9vJlLcaZPYhz-nStRbU-roKXNjWJ7Y7AYa0WK3LUfYLhauw4676uFJ699p5U&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Massimiliano Sasso,,2019-05-18,,"Condivido alcuni tuoi punti di vista però proprio non comprendo come nel 2019 si possa credere a baggianate come madonnine, santini e altri amici immaginari vari...",/massimiliano.sasso.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=230&av=100013534782121&eav=AfbcjVA9vJlLcaZPYhz-nStRbU-roKXNjWJ7Y7AYa0WK3LUfYLhauw4676uFJ699p5U&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Lanzeni,,2019-05-18,,"Girano foto con la piazza semi vuota, ed i sinistri che ridono.",/andrea.lanzeni.79?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=240&av=100013534782121&eav=AfYknjnzbj_IRVMvjV296SKH_h1e1RnDJAn5keN_iW8dQN4tTwzCnYWVokQNghPnzZ4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Libero Bianchi,,2019-05-18,,Sei senza parole perché la piazza è mezza vuota. Dai che il giochino è finito.... Photoshopparo 😂😂😂😂😂,/profile.php?id=100009487098778&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=240&av=100013534782121&eav=AfYknjnzbj_IRVMvjV296SKH_h1e1RnDJAn5keN_iW8dQN4tTwzCnYWVokQNghPnzZ4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cinzia Marangoni,,2019-05-18,,Questa è la vera democrazia sana💚grande capitano,/cinzia.marangoni?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=240&av=100013534782121&eav=AfYknjnzbj_IRVMvjV296SKH_h1e1RnDJAn5keN_iW8dQN4tTwzCnYWVokQNghPnzZ4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Mirandola,,2019-05-18,1,Grande Capitano oggi hai fatto la nuova storia della Politica Italiana e Europea ❤,/daniela.mirandola?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=240&av=100013534782121&eav=AfYknjnzbj_IRVMvjV296SKH_h1e1RnDJAn5keN_iW8dQN4tTwzCnYWVokQNghPnzZ4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mauro Cenedese,,2019-05-18,,Che diranno i buffoni vestiti di rosso e bianco?,/mauro.cenedese.79?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=240&av=100013534782121&eav=AfYknjnzbj_IRVMvjV296SKH_h1e1RnDJAn5keN_iW8dQN4tTwzCnYWVokQNghPnzZ4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Graziano,,2019-05-18,,"Agli scalzacani della sinistra, nel vedere una piazza così saranno venute le convulsioni😁😁😁",/marco.graziano.585?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=240&av=100013534782121&eav=AfYknjnzbj_IRVMvjV296SKH_h1e1RnDJAn5keN_iW8dQN4tTwzCnYWVokQNghPnzZ4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Pasetti,,2019-05-18,1,Altro che udienza dal Papa alla Domenica all Angelus. Salvini è un uomo della Provvidenza. GoSalviniGo!!! Leader d'Europa!,/marco.pasetti.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=240&av=100013534782121&eav=AfYknjnzbj_IRVMvjV296SKH_h1e1RnDJAn5keN_iW8dQN4tTwzCnYWVokQNghPnzZ4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Da Frassini,,2019-05-18,,Così tanta gente che sarà l unica a votare questo pericoloso personaggio.,/antoniodafrassini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=240&av=100013534782121&eav=AfYknjnzbj_IRVMvjV296SKH_h1e1RnDJAn5keN_iW8dQN4tTwzCnYWVokQNghPnzZ4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcello Guian,,2019-05-18,1,"Non mi interessano le piazza, mi interessa che é tutta una farsa propagandistica.",/marcegu?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=240&av=100013534782121&eav=AfYknjnzbj_IRVMvjV296SKH_h1e1RnDJAn5keN_iW8dQN4tTwzCnYWVokQNghPnzZ4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Orazio Passaro,,2019-05-18,,Forse molti non hanno capito che l'Italia oramai è di destra.,/orazio.passaro.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=240&av=100013534782121&eav=AfYknjnzbj_IRVMvjV296SKH_h1e1RnDJAn5keN_iW8dQN4tTwzCnYWVokQNghPnzZ4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Dino Defelice,ROOT,2019-05-18,8,MATTEO ho 66 .ANNI mai visto . Un PRESIDENTE .tra la GENTE che ti stima SEI UN GRANDE VEDRAI CHE CE LA FARAI TI ARGURO un BUON FINE .di SETTIMANA,/dino.defelice.315?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145667286488226&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCdkxej_6OPQTN5&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ale Giudici,Dino Defelice,2019-05-18,,Grande Dino,/alessia.giudici1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145667286488226&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCdkxej_6OPQTN5&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alberto Rogialli,,2019-05-18,2,Che spettacolo!!!!!!! Ma ora cosa diranno i soliti..... 🤣 🤣 🤣 🤣 🤣 🤣 🤣,/alberto.rogialli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=250&av=100013534782121&eav=AfbYLuWpOlWe61KCryKgHtQgZjwGlz9s9gh9HXdXMoZzZftChJ2wQneDLDJ_UqtVND0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Chiara Alba,,2019-05-18,,"Stupendamente bello!!! W la nostra bella Italia e grazie soprattutto a te, Matteo. Sei ESEMPLARE :-*",/chiara.alba.161214?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=250&av=100013534782121&eav=AfbYLuWpOlWe61KCryKgHtQgZjwGlz9s9gh9HXdXMoZzZftChJ2wQneDLDJ_UqtVND0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaele De Luisi,,2019-05-18,,Infarti senza parole. Il 25 aprile io c'ero #ionondimentico e ora bannatemi #sapevatelo,/raffaele.deluisi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=250&av=100013534782121&eav=AfbYLuWpOlWe61KCryKgHtQgZjwGlz9s9gh9HXdXMoZzZftChJ2wQneDLDJ_UqtVND0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudio Guiggi,,2019-05-18,,Massimo Decimo Meridio il gladiatore non ha fatto sconti !!Salvini forever,/claudio.guiggi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=250&av=100013534782121&eav=AfbYLuWpOlWe61KCryKgHtQgZjwGlz9s9gh9HXdXMoZzZftChJ2wQneDLDJ_UqtVND0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Forti,,2019-05-18,,Bravo Matteo e devi vincere per dare un futuro vero all ITALIA,/mark.strong.71216?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=250&av=100013534782121&eav=AfbYLuWpOlWe61KCryKgHtQgZjwGlz9s9gh9HXdXMoZzZftChJ2wQneDLDJ_UqtVND0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Annamaria Cucumazzo,,2019-05-18,,"Capitano sei stato fantastico, ci hai ridato l'orgoglio di essere italiani !",/annamaria.cucumazzo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=250&av=100013534782121&eav=AfbYLuWpOlWe61KCryKgHtQgZjwGlz9s9gh9HXdXMoZzZftChJ2wQneDLDJ_UqtVND0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Enrico Maria Ferrari,,2019-05-18,,Lei e' il nostro Capitano e noi la amiamo. #il26maggiovotolega,/enricomaria.ferrari.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=250&av=100013534782121&eav=AfbYLuWpOlWe61KCryKgHtQgZjwGlz9s9gh9HXdXMoZzZftChJ2wQneDLDJ_UqtVND0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rachele Rossini,,2019-05-18,,"Altro che o bella ciao...un addio x i sinistroidi e magari per tutti i clandestini stranieri in Italia....perché poi alla fine commettono reati,degrado ecc",/rachele.rossini.18?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=250&av=100013534782121&eav=AfbYLuWpOlWe61KCryKgHtQgZjwGlz9s9gh9HXdXMoZzZftChJ2wQneDLDJ_UqtVND0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tiziano Tironi,,2019-05-18,2,Ho guardato il corriere su Facebook è vomitevole venduti a La 7 di Cairo,/tiziano.tironi.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=250&av=100013534782121&eav=AfbYLuWpOlWe61KCryKgHtQgZjwGlz9s9gh9HXdXMoZzZftChJ2wQneDLDJ_UqtVND0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Felice Caravelli,,2019-05-18,1,Ma partecipa anche il sindaco Sala il buonista di turno.,/felice.caravelli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=250&av=100013534782121&eav=AfbYLuWpOlWe61KCryKgHtQgZjwGlz9s9gh9HXdXMoZzZftChJ2wQneDLDJ_UqtVND0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Rizza,,2019-05-18,4,Questa è la dimostrazione che gli Italiani hanno scelto la politica del Ministro Salvini... Oggi siamo noi Cittadini a vincere non i politici !,/giovanni.cz.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=320&av=100013534782121&eav=AfYAsUPXwMqPKxqXyiXwVdqJDtn2q3ghWP8kYc7t6rgHvRYNhtsSu3FoBwLwcx5CbHk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Larry M Swart,,2019-05-18,1,Brilliant outcome boet!,/larrym.swart?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=320&av=100013534782121&eav=AfYAsUPXwMqPKxqXyiXwVdqJDtn2q3ghWP8kYc7t6rgHvRYNhtsSu3FoBwLwcx5CbHk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabrizio Apicella,,2019-05-18,8,Bellissima manifestazione! Grande emozione esserci!!!! Grazie Capitano,/fabrizio.apicella.18?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=320&av=100013534782121&eav=AfYAsUPXwMqPKxqXyiXwVdqJDtn2q3ghWP8kYc7t6rgHvRYNhtsSu3FoBwLwcx5CbHk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabiola Cammuca,,2019-05-18,1,Libertà anche di cura Matteo non dimenticare che ci sono bambini che non li ammettono a scuola solo perché non sono vaccinati o parzialmente..qui non si scherza il diritto alla salute e all'istruzione a tutti..bastaa,/fabiola.cammuca?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=320&av=100013534782121&eav=AfYAsUPXwMqPKxqXyiXwVdqJDtn2q3ghWP8kYc7t6rgHvRYNhtsSu3FoBwLwcx5CbHk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michaela Lav,,2019-05-18,1,"Difendiamo i nostri valori, l’Occidente e le nostre radici. Rispetto per tutti MA ANCHE PER NOI STESSI E PER IL NOSTRO PASSATO!!",/michaela.lav?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=320&av=100013534782121&eav=AfYAsUPXwMqPKxqXyiXwVdqJDtn2q3ghWP8kYc7t6rgHvRYNhtsSu3FoBwLwcx5CbHk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Karlo Karg,,2019-05-18,2,È stata una gigantesca esibizione di Matteo Salvini. Viva l'Italia e tutti i patrioti in Europa 👍,/profile.php?id=100026838101271&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=320&av=100013534782121&eav=AfYAsUPXwMqPKxqXyiXwVdqJDtn2q3ghWP8kYc7t6rgHvRYNhtsSu3FoBwLwcx5CbHk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vida Real,ROOT,2019-05-18,,Io c'ero li vicino per fare shopping ma non per sentire cazzate,/profile.php?id=100003264191764&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622562463155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCbvBFx0K4v7pO1&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuliano Dan,Vida Real,2019-05-18,,Vida Real 😂e già hai ricevuto la tessera del reddito........,/giuly.dan?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622562463155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCbvBFx0K4v7pO1&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gio Magro,ROOT,2019-05-18,13,Con le note di Vasco...ci sta'..,/profile.php?id=100008937103824&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325210884821298&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD8BIEYUBqrolSG&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tatiana Marino,Gio Magro,2019-05-18,1,Ogni suo comizio ha Vasco in sottofondo !!! 😍,/tatiana.marino.82?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_325210884821298&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD8BIEYUBqrolSG&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Antonella Ferri,,2019-05-18,,Chi è che diceva che non c'era nessuno? 😂😂😂 Andate a rosicare da un altra parte e fatevi una bella visita oculistica che ne avete bisogno,/antonella.ferri.96?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=260&av=100013534782121&eav=Afa9_Onql9RJuIxVGnqtWhCTr3HIrExQ5qYEs2dv2CW7pf2Ug3S5yXxO0KFl-HbNXgI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carmen Patrizia,,2019-05-18,,Forza Matteo noi con te e chi vuole rosicare rosichi......... Avanti tutta capitano❤️❤️,/carmen.patrizia.92?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=260&av=100013534782121&eav=Afa9_Onql9RJuIxVGnqtWhCTr3HIrExQ5qYEs2dv2CW7pf2Ug3S5yXxO0KFl-HbNXgI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Teresa Favaro,,2019-05-18,2,E un'altra bella botta alla sinistra! Vai Salvini 👍👍👍,/teresa.favaro.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=260&av=100013534782121&eav=Afa9_Onql9RJuIxVGnqtWhCTr3HIrExQ5qYEs2dv2CW7pf2Ug3S5yXxO0KFl-HbNXgI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nadia Manzoni,,2019-05-18,,grande Salvini...chissà adesso Zingaretti sembra una iena ride sempre quando parla....,/profile.php?id=100014559434430&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=260&av=100013534782121&eav=Afa9_Onql9RJuIxVGnqtWhCTr3HIrExQ5qYEs2dv2CW7pf2Ug3S5yXxO0KFl-HbNXgI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Dany,,2019-05-18,,"Quello che sta facendo questo Governo nel settore scuola é assurdo!! Bandire concorsi su concorsi è inconcepibile , soprattutto per quelle classi di concorso dove le graduatorie sono stracolme!! Ci sono gae sature, gm 2016 in alcune regioni piene di vincitori e idonei, anche gli idonei come i vincitori hanno sostenuto e superato un concorso con prove difficili e selettive. Il decreto 334 Ter bis ha fatto cadere il tetto del 10%, una parte di questo Governo in propaganda elettorale ante 4 marzo aveva promesso la tutela degli idonei, il ministro della pubblica istruzione in un'interrogazione parlamentare di dicembre, aveva parlato degli idonei come soluzione per combattere il precariato. Per gli idonei 2012 fu trovata soluzione, in alcune provincie del Nord gli idonei 2016 sono stati tutti assunti. Si sta verificando la più grande disparità di trattamento, si parla tanto di educazione civica di Costituzione, e poi stiamo vedendo ledere l'art. 3 sul trattamento di uguaglianza. Si ledono diritti di docenti, molti precari da anni, che hanno affrontato e superato un concorso SELETTIVO, e sottolineo Selettivo, non solo non sono considerati e ascoltati, ma allo scadere delle loro graduatorie saranno rottamati!! Per indire ancora concorsi sperperando soldi dei contribuenti. Se questo è un CAMBIAMENTO?! Qui si sta solo perseverando sulla scia della vecchia politica, questa ""nuova"", che tanto nuova non si sta dimostrando, sta cancellando i meriti e schiaffeggiando la MERITOCRAZIA!! Solo nel ""bel paese"" accadono queste cose. Il Cambiamento rottama i docenti, pensa a regionalizare e quindi a istituire le scuole di serie A e serie B. L'ultima riforma buona fu quella di Gentile, le restanti sono solo servite a tagliare, tagliare. Quel che si promette, si mantiene. Quel che si dà si toglie! #il26maggiosiavvicina# i docenti e la scuola non dimenticano #LEGA #M5S",/daniela.indovina.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=260&av=100013534782121&eav=Afa9_Onql9RJuIxVGnqtWhCTr3HIrExQ5qYEs2dv2CW7pf2Ug3S5yXxO0KFl-HbNXgI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alberto Polidori,,2019-05-18,,Certo che sì 👌 Io sono italiano 🇮🇹 e sto con Salvini.,/alberto.polidori.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=260&av=100013534782121&eav=Afa9_Onql9RJuIxVGnqtWhCTr3HIrExQ5qYEs2dv2CW7pf2Ug3S5yXxO0KFl-HbNXgI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marina Calabrese,,2019-05-18,,Ma tutti voi lo sapete che Salvini è capolista e che non andrà lui a governare in Europa!!!,/marina.calabrese.10?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=260&av=100013534782121&eav=Afa9_Onql9RJuIxVGnqtWhCTr3HIrExQ5qYEs2dv2CW7pf2Ug3S5yXxO0KFl-HbNXgI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gio Pezzoli,,2019-05-18,1,Vedendo tanta gente in piazza Duomo per SALVINI mi viene a pensare la domenica prima al raduno Alpino avanti così SALVINI si vede che ai tanta gente che crede in Tè e ti vuol bene,/gio.pezzoli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=260&av=100013534782121&eav=Afa9_Onql9RJuIxVGnqtWhCTr3HIrExQ5qYEs2dv2CW7pf2Ug3S5yXxO0KFl-HbNXgI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Garibaldi,,2019-05-18,,"Cosa strana le 📺 TV non parlano di questo evento , parla solo di striscioni 😃😃😃🤔🤔🤔👍",/lucia.garibaldi.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=260&av=100013534782121&eav=Afa9_Onql9RJuIxVGnqtWhCTr3HIrExQ5qYEs2dv2CW7pf2Ug3S5yXxO0KFl-HbNXgI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesco Ponticella,,2019-05-18,,Solo u grido forza salviniiiii un italiano tra gli italiani e per gli italiani,/francesco.ponticella?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=270&av=100013534782121&eav=AfaHl6HSVDZadu0TMQavJeFj9F1m4nrZEI9z0-k2C3kCSPo18HvrHJoP6jZV-ZyAO3k&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Murdoch,,2019-05-18,,Calenda dichiara che sul palco c'erano i peggiori nemici dell'Italia. Detto da un pdiota fa tenerezza 😂,/giuseppe.murdoch.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=270&av=100013534782121&eav=AfaHl6HSVDZadu0TMQavJeFj9F1m4nrZEI9z0-k2C3kCSPo18HvrHJoP6jZV-ZyAO3k&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Pirillo,,2019-05-18,,È nient ...anche a Milano un boom di persone ..mi raccomando non vi strozzate rosiconi il bello ancora deve venire #26maggiovotolega ✌🇮🇹,/giovanna.pirillo.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=270&av=100013534782121&eav=AfaHl6HSVDZadu0TMQavJeFj9F1m4nrZEI9z0-k2C3kCSPo18HvrHJoP6jZV-ZyAO3k&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Charrier Franca Nino,,2019-05-18,,Grande SALVIN ti vogliamo un mondo di bene 💚💚💚💚💚💚💚💚💚,/nino.charrier?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=270&av=100013534782121&eav=AfaHl6HSVDZadu0TMQavJeFj9F1m4nrZEI9z0-k2C3kCSPo18HvrHJoP6jZV-ZyAO3k&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Rosa Morabito,,2019-05-18,1,I immigrazione e compagnia di Soros che si emesso d'accordo con Il PD quando era al governo per Corpasua che gli italiani stano pagando le tasse li Pd hanno fatto un sacco di Dani al popolo italiano insieme al signor Soros perché li governo non gli fa pagare le tasse sempre noi cittadini ci ripetiamo dasca.nostra li signore Soros ci deve pensare a questi poveri cristiani che vengono qui in Italia,/mariarosa.morabito.56?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=270&av=100013534782121&eav=AfaHl6HSVDZadu0TMQavJeFj9F1m4nrZEI9z0-k2C3kCSPo18HvrHJoP6jZV-ZyAO3k&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tosca Argentin,,2019-05-18,1,Dai capitano continua così nn fare retta ad di Maio che alla fine sembra la fotocopia di Renzi d'accordo all' inizio e poi sempre con te .ha comprato i soliti italiani che da comunisti sono passati con te per un reddito di cittadinanza che ancora nn hanno ricevuto . almeno tu dimostri che le tue idee sono sempre uguale e se devi combattere ancora più forte noi siamo con te .nn cedere a quei pagliacci hai già venduto un po' troppo da mixer di un popolo frustrato ma siamo italiani e fieri di te al comando 💖💖💖,/tosca.argentin?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=270&av=100013534782121&eav=AfaHl6HSVDZadu0TMQavJeFj9F1m4nrZEI9z0-k2C3kCSPo18HvrHJoP6jZV-ZyAO3k&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefano Maggiore,,2019-05-18,,Quella signora ke ha detto saranno in 10000 e' andata a scuola ho sa contare fino a 10 !!!!!!!!!!,/stefano.maggiore.14?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=270&av=100013534782121&eav=AfaHl6HSVDZadu0TMQavJeFj9F1m4nrZEI9z0-k2C3kCSPo18HvrHJoP6jZV-ZyAO3k&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigia Rota,,2019-05-18,,Grande Matteo il popolo ti ama e oggi per l'ennesima volta telo ha dimostrato sei un grande,/profile.php?id=100006450138823&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=270&av=100013534782121&eav=AfaHl6HSVDZadu0TMQavJeFj9F1m4nrZEI9z0-k2C3kCSPo18HvrHJoP6jZV-ZyAO3k&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Marchesi,,2019-05-18,,Oggi più che mai la lega ha sbarazzato tutte le aspirazioni degli avversari ....,/profile.php?id=100011139438174&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=270&av=100013534782121&eav=AfaHl6HSVDZadu0TMQavJeFj9F1m4nrZEI9z0-k2C3kCSPo18HvrHJoP6jZV-ZyAO3k&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Agata Giannaula,,2019-05-18,,Rosiconiiiii rosicateeeeee signore si nasce e SALVINI E UN SIGNOREEEEE,/agata.giannaula?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=270&av=100013534782121&eav=AfaHl6HSVDZadu0TMQavJeFj9F1m4nrZEI9z0-k2C3kCSPo18HvrHJoP6jZV-ZyAO3k&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pierangela Vergani,ROOT,2019-05-18,9,Siamo noi che ti ringraziamo... Vinceremooooo,/profile.php?id=100005281006828&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366815184178591&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBzcLeP_ocyPLkZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Antonio Gallarello,Pierangela Vergani,2019-05-18,,Ma de che!!!,/antonio.gallarello?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366815184178591&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBzcLeP_ocyPLkZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Antonio Gallarello,Pierangela Vergani,2019-05-18,,I terroni lo puniranno,/antonio.gallarello?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366815184178591&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBzcLeP_ocyPLkZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pierangela Vergani,Pierangela Vergani,2019-05-18,,Vedremo,/profile.php?id=100005281006828&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366815184178591&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBzcLeP_ocyPLkZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Stefano Balletti,,2019-05-18,,Il tempo non è stato dalla tua parte ma il 26 glielo mettiamo nel culo anche a lui 😂,/Simatik?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=280&av=100013534782121&eav=AfYvrgovM7RmtNRe2VrBBmoaoCzCu8ZG2_UojtB-Z8CoEdUC9T8jYF-nW-SSVe8VnHs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marisa Alfano,,2019-05-18,,Bravo discorso leale semplice giusto....senza offendere nessuno senza paragonarsi a nessuno...ma unico per ridare fiducia agli italiani,/marisa.alfano.75?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=280&av=100013534782121&eav=AfYvrgovM7RmtNRe2VrBBmoaoCzCu8ZG2_UojtB-Z8CoEdUC9T8jYF-nW-SSVe8VnHs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lodovico Di Salvatore,,2019-05-18,,"ma quanti pseudo sinistroidi ancora esistono in Italia?non ci si crede,il comunismo non esiste più da nessuna parte ma da noi esiste una versione difficile da abbattere,resistono anche agli antibiotici più aggressivi",/lodovico.salvatore?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=280&av=100013534782121&eav=AfYvrgovM7RmtNRe2VrBBmoaoCzCu8ZG2_UojtB-Z8CoEdUC9T8jYF-nW-SSVe8VnHs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Deborah Costanzi,,2019-05-18,,Adesso i tuoi soci si cagano addosso a Milano tanta gente e loro?,/deborah.costanzi.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=280&av=100013534782121&eav=AfYvrgovM7RmtNRe2VrBBmoaoCzCu8ZG2_UojtB-Z8CoEdUC9T8jYF-nW-SSVe8VnHs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Jenny Jenny,,2019-05-18,3,Grandeeeee salvini ormai manca poco -9 giorni alla alba gente tutta forza per il nostro capitano!!!!!!!deve vincere eteree! !!!!!!altrimenti sii davvero rovinati.salvini sei UNICO! !!!!sei l universo!!!!!!,/jenny.jenny.14811692?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=280&av=100013534782121&eav=AfYvrgovM7RmtNRe2VrBBmoaoCzCu8ZG2_UojtB-Z8CoEdUC9T8jYF-nW-SSVe8VnHs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gino Orso,,2019-05-18,,"Lancio un quesito CALADENDA xche era sul palco. ...magari si "" impara "" come si raccolgono gli italiani democratici",/gino.orso.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=280&av=100013534782121&eav=AfYvrgovM7RmtNRe2VrBBmoaoCzCu8ZG2_UojtB-Z8CoEdUC9T8jYF-nW-SSVe8VnHs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Caterina Cicia,,2019-05-18,,Ciao Elena ho vissuto con i miei occhi il delirio della genta per il nostro Ministro Salvini gremita la piazza del Duomo,/caterina.cicia.14?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=280&av=100013534782121&eav=AfYvrgovM7RmtNRe2VrBBmoaoCzCu8ZG2_UojtB-Z8CoEdUC9T8jYF-nW-SSVe8VnHs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefano Scanà Petrucci,,2019-05-18,,"Vai avanti CAPITANO, ora leviamoci i pidocchi da dosso xche a frequentare certa gente si possono prende w Salvini",/stefanoscana.petrucci?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=280&av=100013534782121&eav=AfYvrgovM7RmtNRe2VrBBmoaoCzCu8ZG2_UojtB-Z8CoEdUC9T8jYF-nW-SSVe8VnHs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Fugazza,,2019-05-18,,"Decine di migliaia di persone in duomo con il Capitano, e al tg regionale parlano solo degli striscioni contro...🙄 Vai Matteo Salvini! Tu sei il migliore comunque!💚💚💚💚 🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹",/patrizia.fugazza?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=280&av=100013534782121&eav=AfYvrgovM7RmtNRe2VrBBmoaoCzCu8ZG2_UojtB-Z8CoEdUC9T8jYF-nW-SSVe8VnHs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nilo Valenti,,2019-05-18,,Antonio i pericolosi sono altri e Siena tel o dimostra ..continua ancora a per il bene dei giovani,/nilo.valenti?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=280&av=100013534782121&eav=AfYvrgovM7RmtNRe2VrBBmoaoCzCu8ZG2_UojtB-Z8CoEdUC9T8jYF-nW-SSVe8VnHs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marisella Triolo,,2019-05-18,6,"Lo criticano perché si fa i selfy, non capiscono anzi fanno finta che sono i cittadini che li vogliono fare",/marisella.triolo.7140?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=330&av=100013534782121&eav=AfaolmICogah2-E61O3Iv-Znr9_y5nfnkt1jT1FMo6JMzrW38yuEqTyqOuUik5PCLV0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Cappellacci,,2019-05-18,4,"Un politico in mezzo alla gente, non si era mai visto! Grazie Matteo 💪🙏",/patrizia.cappellacci?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=330&av=100013534782121&eav=AfaolmICogah2-E61O3Iv-Znr9_y5nfnkt1jT1FMo6JMzrW38yuEqTyqOuUik5PCLV0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marina Moretti,,2019-05-18,8,Finalmente un uomo vero che non se la tira ed è un grande!!,/marina.moretti.3597?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=330&av=100013534782121&eav=AfaolmICogah2-E61O3Iv-Znr9_y5nfnkt1jT1FMo6JMzrW38yuEqTyqOuUik5PCLV0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Feletti,,2019-05-18,8,Dai un calcio in culo al Bibitaro,/marco.feletti.56?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=330&av=100013534782121&eav=AfaolmICogah2-E61O3Iv-Znr9_y5nfnkt1jT1FMo6JMzrW38yuEqTyqOuUik5PCLV0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Cortese,,2019-05-18,9,Orgogliosa di essere italiana. Grazie Matteooooo,/daniela.cortese.16?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=330&av=100013534782121&eav=AfaolmICogah2-E61O3Iv-Znr9_y5nfnkt1jT1FMo6JMzrW38yuEqTyqOuUik5PCLV0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Giorgetti,,2019-05-18,,"Caro Ministro, ora che NARDELLA et alia parlano di SICUREZZA LO SVUOTACARCERI lo ha fatto APPROVARE RENZI",/giorgettiroberto?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=330&av=100013534782121&eav=AfaolmICogah2-E61O3Iv-Znr9_y5nfnkt1jT1FMo6JMzrW38yuEqTyqOuUik5PCLV0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elisa Lia,,2019-05-18,1,Grazie!!!Esperienza stupenda. sono arrivata di corsa. Seguito tutto con la valigia ero via x lavoro e sono tornata giusto x sentirti.Grande il 18 maggio sono venuta com è promesso- nonostante tutto. Sarò presente soprattutto il 26,/elisa.lia.94?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=330&av=100013534782121&eav=AfaolmICogah2-E61O3Iv-Znr9_y5nfnkt1jT1FMo6JMzrW38yuEqTyqOuUik5PCLV0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rota Giuseppe,,2019-05-18,6,Da Milano come nella storia è partito il vento del cambiamento 🍀,/rota.giuseppe.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=330&av=100013534782121&eav=AfaolmICogah2-E61O3Iv-Znr9_y5nfnkt1jT1FMo6JMzrW38yuEqTyqOuUik5PCLV0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Massimiliano Racanati,ROOT,2019-05-18,,Però gran parte di quel pubblico ti ha contestato!!!! Le foto non parlano... Ma chi era lì ha visto,/profile.php?id=100004279336739&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301936354028844&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCBfxFkxSjXD40L&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marilena De Meo,Massimiliano Racanati,2019-05-18,,"Massimiliano Racanati Cosa importa se l'hanno contestato!! Lui, vive di visibilità e commenti su FB e un branco di illusi che lo seguono. Quando verrà fatto fuori, rimarranno tutti a bocca chiusa",/marilena.demeo.94?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301936354028844&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCBfxFkxSjXD40L&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimiliano Sodano,Massimiliano Racanati,2019-05-18,,Massimiliano Racanati tu c'eri?,/massimiliano.sodano.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301936354028844&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCBfxFkxSjXD40L&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimiliano Racanati,Massimiliano Racanati,2019-05-18,,Massimiliano Sodano non posso rispondere a questa domanda,/profile.php?id=100004279336739&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301936354028844&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCBfxFkxSjXD40L&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimiliano Sodano,Massimiliano Racanati,2019-05-18,,Massimiliano Racanati gioca il jolly,/massimiliano.sodano.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301936354028844&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCBfxFkxSjXD40L&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimiliano Racanati,Massimiliano Racanati,2019-05-18,,Massimiliano Sodano 🃏,/profile.php?id=100004279336739&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301936354028844&count=5&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCBfxFkxSjXD40L&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loreta Prenz,ROOT,2019-05-18,5,Ma quanti erano in piazza Duomo? Che meraviglia,/loreta.prenz?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145668473154774&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAQt-wW7Ytr5Xxe&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giustina Cavazzana,Loreta Prenz,2019-05-18,,Loreta Prenz Eravamo più di 120.000💚😍🌹,/profile.php?id=100014545720203&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145668473154774&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAQt-wW7Ytr5Xxe&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loreta Prenz,Loreta Prenz,2019-05-18,,"Giustina Cavazzana ci sei anche tu, bravaaaaaa ! Davvero 120.000? Nessuno ne parla🇮🇹💚🇮🇹",/loreta.prenz?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145668473154774&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAQt-wW7Ytr5Xxe&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giustina Cavazzana,Loreta Prenz,2019-05-18,,"Loreta Prenz Si ero lì, stupendo tutto, nessuna forma di tensione. Piazza piena 💚😊💚",/profile.php?id=100014545720203&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145668473154774&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAQt-wW7Ytr5Xxe&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giustina Cavazzana,Loreta Prenz,2019-05-18,,😘,/profile.php?id=100014545720203&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145668473154774&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAQt-wW7Ytr5Xxe&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Loreta Prenz,Loreta Prenz,2019-05-18,1,"Giustina Cavazzana quando avrei tempo raccontaci, non son potuta venire, che dolore !",/loreta.prenz?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145668473154774&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAQt-wW7Ytr5Xxe&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giustina Cavazzana,Loreta Prenz,2019-05-18,1,Loreta Prenz Ok ora mi riposo 🌹,/profile.php?id=100014545720203&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145668473154774&count=6&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAQt-wW7Ytr5Xxe&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Saligari,ROOT,2019-05-18,1,A me non sembrano poi così tanti.....e poi la foto tarocca. Piazza Duomo non è mica così!!!,/patrizia.saligari.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528393155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDpregPnINcESiK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lina Di Tano,Patrizia Saligari,2019-05-18,,,/lina.ditano.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528393155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDpregPnINcESiK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucia Coppa,Patrizia Saligari,2019-05-18,1,Patrizia Saligari ma sei di Milano ?,/lucia.coppa.779?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528393155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDpregPnINcESiK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,Patrizia Saligari,2019-05-18,,Patrizia Saligari la foto che gira é di diverse ore prima della manifestazione.,/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528393155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDpregPnINcESiK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Saligari,Patrizia Saligari,2019-05-18,,Lucia Coppa la foto è stata presa con il grandangolo e quindi la Piazza ha una forma diversa dal reale.,/patrizia.saligari.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528393155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDpregPnINcESiK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mauro Cavallini,Patrizia Saligari,2019-05-18,,Patrizia Saligari lei non ha visto niente.Pensa di avere visto ciò che le conviene.,/mauro.cavallini.7311?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528393155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDpregPnINcESiK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Saligari,Patrizia Saligari,2019-05-18,,Mauro Cavallini ok. Hai ragione tu!,/patrizia.saligari.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622528393155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDpregPnINcESiK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rossana Bonora,ROOT,2019-05-18,4,Molla Di Maio capitano,/rossana.bonora?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411719255517810&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD8TakK6nQHWl-l&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Bianca Luce,Rossana Bonora,2019-05-18,1,Ma chi è Di Maio...un bamboccio che anche ora sparla di Salvini dicendo che è un pugile suonato😠😡😠😡😠😠,/profile.php?id=100008691730920&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411719255517810&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD8TakK6nQHWl-l&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rossana Bonora,Rossana Bonora,2019-05-18,,Bianca Luce è sempre stato un cretino lui e l altro imbecille di Grillo,/rossana.bonora?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2411719255517810&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD8TakK6nQHWl-l&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marco Repetti,,2019-05-18,7,La stampa mainstream dovrebbe vergognarsi,/mrepetti79?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=340&av=100013534782121&eav=AfY3jtW_kWtQRbVfU0rxxmh7YB40L9IQ_tlGAGnYRjnetIpJkMOTlumu8XL1BJEgaMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianni Giustl,,2019-05-18,3,"Più sento parlare di Maio, Zingaretti, è tutti i media T.V. Più sono Leghista.👏👏💞💘",/gianni.giustl?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=340&av=100013534782121&eav=AfY3jtW_kWtQRbVfU0rxxmh7YB40L9IQ_tlGAGnYRjnetIpJkMOTlumu8XL1BJEgaMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Grazia Mangione,,2019-05-18,6,Pensa un po' quanta gente non è potuta venire....Grande Salvini❤😍😍,/grazia.mangione.75?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=340&av=100013534782121&eav=AfY3jtW_kWtQRbVfU0rxxmh7YB40L9IQ_tlGAGnYRjnetIpJkMOTlumu8XL1BJEgaMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loretta Sinigaglia,,2019-05-18,5,Grande. Alla faccia di chi ti vuol male.,/loretta.sinigaglia.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=340&av=100013534782121&eav=AfY3jtW_kWtQRbVfU0rxxmh7YB40L9IQ_tlGAGnYRjnetIpJkMOTlumu8XL1BJEgaMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziella Zorzan,,2019-05-18,5,Bravo Matteo la gente x bene e' tutta con te!!!AVANTI TUTTA,/graziella.zorzan.50?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=340&av=100013534782121&eav=AfY3jtW_kWtQRbVfU0rxxmh7YB40L9IQ_tlGAGnYRjnetIpJkMOTlumu8XL1BJEgaMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mariagiovanna Mirano,,2019-05-18,5,"Un Ministro fuori dagli schemi,ma sicuramente amato dal suo elettorato!Il popolo lo vuole così,meno giacca e cravatta e più contatto tra la gente!Ha cambiato il modo di fare politica,piaccia o no è di sicuro il politico più apprezzato del momento!",/mariagiovanna.mirano?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=340&av=100013534782121&eav=AfY3jtW_kWtQRbVfU0rxxmh7YB40L9IQ_tlGAGnYRjnetIpJkMOTlumu8XL1BJEgaMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Mattarel,,2019-05-18,3,,/anna.mattarel.54?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=340&av=100013534782121&eav=AfY3jtW_kWtQRbVfU0rxxmh7YB40L9IQ_tlGAGnYRjnetIpJkMOTlumu8XL1BJEgaMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Donato Rutigliano,,2019-05-18,,A Milano c'erano 100 mila persone..e il PD che fa? Apre un circolo di 4 persone. ahahhh,/donato.rutigliano.370?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=340&av=100013534782121&eav=AfY3jtW_kWtQRbVfU0rxxmh7YB40L9IQ_tlGAGnYRjnetIpJkMOTlumu8XL1BJEgaMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Allocca,ROOT,2019-05-18,,"Ministro l'Italia non finisce nell'alto Lazio!!!!!più che leghista lei è ministro degli interni,venga giù al sud,dove si spara sui bambini,nn può essere fermato dalle lenzuola!!!!",/profile.php?id=100009373823382&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622558558155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAv0313ZtcvVNqY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mauro Montanari,Patrizia Allocca,2019-05-18,,"Patrizia Allocca il ministro è venuto giù, ma non lo accettate, preferite i vostri sindaci sinistrati, oppure tacete per paura? Sono anni e anni che le pallottole volano in meridione, cominciate anche voi a rivoltarvi contro le mafie e a certi sindaci.",/mauro.montanari.562?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622558558155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAv0313ZtcvVNqY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Allocca,Patrizia Allocca,2019-05-18,,"Mauro Montanari i pregiudizi nn hanno mai fatto avanzare un popolo,c'è tanta brava gente e tante amministrazioni pulite!la protesta deve essere messa in conto da un vero uomo di stato!è facile andare raccogliere gli onori!la sfida é recuperare la parte buona del sud! E le garantisco c'è tanto di buono!",/profile.php?id=100009373823382&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622558558155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAv0313ZtcvVNqY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Fugazza,,2019-05-18,,"Decine di migliaia di persone in duomo con il Capitano, e al tg regionale parlano solo degli striscioni contro...🙄 Vai Matteo Salvini! Tu sei il migliore comunque!💚💚💚💚 🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹",/patrizia.fugazza?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=290&av=100013534782121&eav=AfYcNGhcxvdrr6xRNoeRwmbWzaPQ9W-M7I-BvUYOZ6KefzDgl6Lf4WLFRzZk9nsnDyg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nilo Valenti,,2019-05-18,,Antonio i pericolosi sono altri e Siena tel o dimostra ..continua ancora a per il bene dei giovani,/nilo.valenti?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=290&av=100013534782121&eav=AfYcNGhcxvdrr6xRNoeRwmbWzaPQ9W-M7I-BvUYOZ6KefzDgl6Lf4WLFRzZk9nsnDyg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Vellucci,,2019-05-18,,Ragazzi questo e pazzesco quello che o visto nel video a Milano in Europa gli distruggiamo 3 insieme vigono ovunque,/giuseppe.vellucci.731?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=290&av=100013534782121&eav=AfYcNGhcxvdrr6xRNoeRwmbWzaPQ9W-M7I-BvUYOZ6KefzDgl6Lf4WLFRzZk9nsnDyg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Jean Marie Torre,,2019-05-18,,Il 26 facciamo estinguere gli ultimi rimasugli di comunismo..,/jeanmarie.torre.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=290&av=100013534782121&eav=AfYcNGhcxvdrr6xRNoeRwmbWzaPQ9W-M7I-BvUYOZ6KefzDgl6Lf4WLFRzZk9nsnDyg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marina Mercuri,,2019-05-18,,Grande il nostro capitano viva salvini viva la lega,/marina.mercuri?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=290&av=100013534782121&eav=AfYcNGhcxvdrr6xRNoeRwmbWzaPQ9W-M7I-BvUYOZ6KefzDgl6Lf4WLFRzZk9nsnDyg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ciro Mancini,,2019-05-18,1,Avanti ha cambiare questa Europa dei poteri forti ché affamato i popoli Europei....che sono i veri dittatori..,/ciro.mancini.142?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=290&av=100013534782121&eav=AfYcNGhcxvdrr6xRNoeRwmbWzaPQ9W-M7I-BvUYOZ6KefzDgl6Lf4WLFRzZk9nsnDyg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Simona Galetto,,2019-05-18,,"Meglio di altre foto, ma, pure sa qui si vede che in realtà non c'era nessuno",/simona.galetto?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=290&av=100013534782121&eav=AfYcNGhcxvdrr6xRNoeRwmbWzaPQ9W-M7I-BvUYOZ6KefzDgl6Lf4WLFRzZk9nsnDyg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Selli,ROOT,2019-05-18,4,5stelle a pulire i cessi . Grandeee,/profile.php?id=100008403965110&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009923721076&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBjZTSSKgIjsG4g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Olga PT,,2019-05-18,4,Hai già vinto,/olga.pt?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=350&av=100013534782121&eav=AfaCxiiI9sNLslik6AZcDdBcvzSlyJkTdpn6XWtgaxKxxkTinq6S2ZWCcJNZqpMpQUE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luciana Boniforti,,2019-05-18,,"mai visto un ministro sinistro cosi' acclamato, tt con la loro scorterella a fare solo passerella, dal bar al parlamento, boriosi..",/luciana.boniforti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=350&av=100013534782121&eav=AfaCxiiI9sNLslik6AZcDdBcvzSlyJkTdpn6XWtgaxKxxkTinq6S2ZWCcJNZqpMpQUE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ana Paula Poli,,2019-05-18,3,Sei solo più uno uguale tanto che stano affondando nostra Italia,/ana.paulapoli.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=350&av=100013534782121&eav=AfaCxiiI9sNLslik6AZcDdBcvzSlyJkTdpn6XWtgaxKxxkTinq6S2ZWCcJNZqpMpQUE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Bertoldi,,2019-05-18,,Ci sono i sinistri che per dimostrare che la piazza era vuota sono venuti a fare le foto alle 8 di mattina! Ridicoli!,/gbertoldi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=350&av=100013534782121&eav=AfaCxiiI9sNLslik6AZcDdBcvzSlyJkTdpn6XWtgaxKxxkTinq6S2ZWCcJNZqpMpQUE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Donata Palladino,,2019-05-18,1,Hanno finito di chiacchierare DA CASA SIAMO IL DOPPIO AVANTI MINISTRO SALVINI,/profile.php?id=100004285157081&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=350&av=100013534782121&eav=AfaCxiiI9sNLslik6AZcDdBcvzSlyJkTdpn6XWtgaxKxxkTinq6S2ZWCcJNZqpMpQUE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bergonzi Nadya,,2019-05-18,3,non mollareeeee matteoooo,/nadya.bergonzi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=350&av=100013534782121&eav=AfaCxiiI9sNLslik6AZcDdBcvzSlyJkTdpn6XWtgaxKxxkTinq6S2ZWCcJNZqpMpQUE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Iacullo,,2019-05-18,3,Matteo sei unico 💚💚💚,/maria.iacullo.94?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=350&av=100013534782121&eav=AfaCxiiI9sNLslik6AZcDdBcvzSlyJkTdpn6XWtgaxKxxkTinq6S2ZWCcJNZqpMpQUE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marilena Marocco,,2019-05-18,4,Grande matteo,/marilena.marocco.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=350&av=100013534782121&eav=AfaCxiiI9sNLslik6AZcDdBcvzSlyJkTdpn6XWtgaxKxxkTinq6S2ZWCcJNZqpMpQUE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sifu Marika Antonella Mereu,,2019-05-18,,,/SenseiMarikaAntonellaMereu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=350&av=100013534782121&eav=AfaCxiiI9sNLslik6AZcDdBcvzSlyJkTdpn6XWtgaxKxxkTinq6S2ZWCcJNZqpMpQUE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Yvonne Sassano,ROOT,2019-05-18,,Sisi visto e sentito anche io dalla web cam... Solo fischi e cori 😂😂😂,/yvonne.sassano?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265869330332863&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBOKiGpTxNiOXr_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Pino Mar,Yvonne Sassano,2019-05-18,1,Yvonne Sassano pomata brucia cul x rosiconi,/profile.php?id=100035268701087&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265869330332863&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBOKiGpTxNiOXr_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Benedetta Anderlini,,2019-05-18,,Bravo Salvini così finalmente questi immigratiiiiiiii li rispediamo al loro paese così addio per sempre al pd addio agli immigrati e addio anche al sindaco antiitaliano Alberto Sala che detesto.,/benedetta.anderlini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=360&av=100013534782121&eav=AfawhLcrnIi1vUz_8-LVhW9zn14qGI-0YUYCO9nHlfhvLNCCFgj2WhC-RFsCQbxPEac&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Giustini,,2019-05-18,2,Ti amo Matteo!!,/francesca.giustini2?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=360&av=100013534782121&eav=AfawhLcrnIi1vUz_8-LVhW9zn14qGI-0YUYCO9nHlfhvLNCCFgj2WhC-RFsCQbxPEac&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pina Baviera,,2019-05-18,,,/pina.baviera.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=360&av=100013534782121&eav=AfawhLcrnIi1vUz_8-LVhW9zn14qGI-0YUYCO9nHlfhvLNCCFgj2WhC-RFsCQbxPEac&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Santa Bordone,,2019-05-18,1,,/santa.bordone?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=360&av=100013534782121&eav=AfawhLcrnIi1vUz_8-LVhW9zn14qGI-0YUYCO9nHlfhvLNCCFgj2WhC-RFsCQbxPEac&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziella Rocchitelli,,2019-05-18,,,/graziella.rocchitelli?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=360&av=100013534782121&eav=AfawhLcrnIi1vUz_8-LVhW9zn14qGI-0YUYCO9nHlfhvLNCCFgj2WhC-RFsCQbxPEac&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosamaria Avella,,2019-05-18,,,/rosamaria.avella?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=360&av=100013534782121&eav=AfawhLcrnIi1vUz_8-LVhW9zn14qGI-0YUYCO9nHlfhvLNCCFgj2WhC-RFsCQbxPEac&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Felice Testino,,2019-05-18,,,/felice.testino?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=360&av=100013534782121&eav=AfawhLcrnIi1vUz_8-LVhW9zn14qGI-0YUYCO9nHlfhvLNCCFgj2WhC-RFsCQbxPEac&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stella Luminosa,,2019-05-18,,,/stella.luminosa.96742?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=360&av=100013534782121&eav=AfawhLcrnIi1vUz_8-LVhW9zn14qGI-0YUYCO9nHlfhvLNCCFgj2WhC-RFsCQbxPEac&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonia Pezzolato,,2019-05-18,,,/antonia.pezzolato.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=360&av=100013534782121&eav=AfawhLcrnIi1vUz_8-LVhW9zn14qGI-0YUYCO9nHlfhvLNCCFgj2WhC-RFsCQbxPEac&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonia Pezzolato,,2019-05-18,,,/antonia.pezzolato.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=360&av=100013534782121&eav=AfawhLcrnIi1vUz_8-LVhW9zn14qGI-0YUYCO9nHlfhvLNCCFgj2WhC-RFsCQbxPEac&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Simona Galetto,,2019-05-18,,"Meglio di altre foto, ma, pure sa qui si vede che in realtà non c'era nessuno",/simona.galetto?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=300&av=100013534782121&eav=AfZpXRHElBMDHkioCNLN9YYyRrvg00MPE3ITGgne34U9DMfPyTLfWNQm06Lnnt9DhEE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Massimo Raffaello Testi,,2019-05-18,,"La piazza del Duomo di Milano ha parlato, la piazza dove il Risorgimento ha vissuto la sua pagina più importante: la Milano che oggi ha dichiarato Matteo Salvini presidente del consiglio!",/massimoraffaello.testi.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=300&av=100013534782121&eav=AfZpXRHElBMDHkioCNLN9YYyRrvg00MPE3ITGgne34U9DMfPyTLfWNQm06Lnnt9DhEE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Sanneris,,2019-05-18,,"Orgogliosa del nostro capitano, forza Salvini vai avanti così",/profile.php?id=100009167230395&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=300&av=100013534782121&eav=AfZpXRHElBMDHkioCNLN9YYyRrvg00MPE3ITGgne34U9DMfPyTLfWNQm06Lnnt9DhEE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luisa Caiati,,2019-05-18,,Che spettacolo!!!! La piazza PIENAAAAA!!!! IO ADORO SALVINIIIIIIII !!!!!!!!,/luisa.caiati?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=300&av=100013534782121&eav=AfZpXRHElBMDHkioCNLN9YYyRrvg00MPE3ITGgne34U9DMfPyTLfWNQm06Lnnt9DhEE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Lahiri Oggianu Melesi,,2019-05-18,,Vai Matteo siamo tutti con te.... Ovvero buona parte dell'Italia è con te.... Quella buona!!!!! 😉😉😊,/francescalahiri.oggianumelesi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=300&av=100013534782121&eav=AfZpXRHElBMDHkioCNLN9YYyRrvg00MPE3ITGgne34U9DMfPyTLfWNQm06Lnnt9DhEE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vito Nardelli,,2019-05-18,,"Bravo Ministro Salvini, il miracolo, grazie s te, si sta avverato, viva la nostra Italia, avanti, sempre più forti.",/vito.nardelli.77?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=300&av=100013534782121&eav=AfZpXRHElBMDHkioCNLN9YYyRrvg00MPE3ITGgne34U9DMfPyTLfWNQm06Lnnt9DhEE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessio Conte,,2019-05-18,,Al telegiornale di Raitre hanno intervistato solo i manifestanti della contro manifestazione,/profile.php?id=100013315028549&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=300&av=100013534782121&eav=AfZpXRHElBMDHkioCNLN9YYyRrvg00MPE3ITGgne34U9DMfPyTLfWNQm06Lnnt9DhEE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tony King,,2019-05-18,3,Mallox x tutti i Coglioni parassiti di sinistra e giornalai venduti pennivendoli,/profile.php?id=100007285747982&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=300&av=100013534782121&eav=AfZpXRHElBMDHkioCNLN9YYyRrvg00MPE3ITGgne34U9DMfPyTLfWNQm06Lnnt9DhEE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giorgio Busiello,,2019-05-18,,Poca roba rispetto alla piazza di Bari forza m5s #norazzism #abbassoilfascista ⭐⭐⭐⭐⭐,/gbusiello1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=300&av=100013534782121&eav=AfZpXRHElBMDHkioCNLN9YYyRrvg00MPE3ITGgne34U9DMfPyTLfWNQm06Lnnt9DhEE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Massara,,2019-05-18,,,/stefania.massara.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=370&av=100013534782121&eav=AfZ-jaNsEYmdQw-PWZlIJmRuGeZ2-JliXZGItDqhWUYwdTvmhHngug0T1X49ybn75lM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Grazia Modugno,,2019-05-18,,,/grazia.modugno.16?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=370&av=100013534782121&eav=AfZ-jaNsEYmdQw-PWZlIJmRuGeZ2-JliXZGItDqhWUYwdTvmhHngug0T1X49ybn75lM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loretta Sinigaglia,,2019-05-18,,,/loretta.sinigaglia.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=370&av=100013534782121&eav=AfZ-jaNsEYmdQw-PWZlIJmRuGeZ2-JliXZGItDqhWUYwdTvmhHngug0T1X49ybn75lM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Simona Beretta,,2019-05-18,4,Grande,/simona.beretta.16?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=370&av=100013534782121&eav=AfZ-jaNsEYmdQw-PWZlIJmRuGeZ2-JliXZGItDqhWUYwdTvmhHngug0T1X49ybn75lM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bruna Maddalena Pecori Sisler,,2019-05-18,,,/bruna.sisler?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=370&av=100013534782121&eav=AfZ-jaNsEYmdQw-PWZlIJmRuGeZ2-JliXZGItDqhWUYwdTvmhHngug0T1X49ybn75lM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Roveda,,2019-05-18,,,/paola.roveda.777?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=370&av=100013534782121&eav=AfZ-jaNsEYmdQw-PWZlIJmRuGeZ2-JliXZGItDqhWUYwdTvmhHngug0T1X49ybn75lM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cinzia Beringher,,2019-05-18,,,/cinzia.beringher.73?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=370&av=100013534782121&eav=AfZ-jaNsEYmdQw-PWZlIJmRuGeZ2-JliXZGItDqhWUYwdTvmhHngug0T1X49ybn75lM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Straniero,,2019-05-18,,,/profile.php?id=100008958841045&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=370&av=100013534782121&eav=AfZ-jaNsEYmdQw-PWZlIJmRuGeZ2-JliXZGItDqhWUYwdTvmhHngug0T1X49ybn75lM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liliana Tessera,,2019-05-18,,,/casa.delsorriso.796?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=370&av=100013534782121&eav=AfZ-jaNsEYmdQw-PWZlIJmRuGeZ2-JliXZGItDqhWUYwdTvmhHngug0T1X49ybn75lM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Maria Curiale,,2019-05-18,,,/annamaria.curiale?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=370&av=100013534782121&eav=AfZ-jaNsEYmdQw-PWZlIJmRuGeZ2-JliXZGItDqhWUYwdTvmhHngug0T1X49ybn75lM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Teresa Colangelo,,2019-05-18,,,/profile.php?id=100006809746743&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=380&av=100013534782121&eav=AfbX3RC8gUfNVR8kyUnAQSQKwrNbySj06j0a8Ff4qRZz3xmWSEFAFzbHQYdcG89RV2I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nicoletta Tavian,,2019-05-18,,,/nicoletta.tavian?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=380&av=100013534782121&eav=AfbX3RC8gUfNVR8kyUnAQSQKwrNbySj06j0a8Ff4qRZz3xmWSEFAFzbHQYdcG89RV2I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Colombo Laura,,2019-05-18,,,/chiara.alba.754?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=380&av=100013534782121&eav=AfbX3RC8gUfNVR8kyUnAQSQKwrNbySj06j0a8Ff4qRZz3xmWSEFAFzbHQYdcG89RV2I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Colombo Laura,,2019-05-18,,,/chiara.alba.754?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=380&av=100013534782121&eav=AfbX3RC8gUfNVR8kyUnAQSQKwrNbySj06j0a8Ff4qRZz3xmWSEFAFzbHQYdcG89RV2I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Colombo Laura,,2019-05-18,,,/chiara.alba.754?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=380&av=100013534782121&eav=AfbX3RC8gUfNVR8kyUnAQSQKwrNbySj06j0a8Ff4qRZz3xmWSEFAFzbHQYdcG89RV2I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Clarissa Castrello,,2019-05-18,,,/clarissa.castrello?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=380&av=100013534782121&eav=AfbX3RC8gUfNVR8kyUnAQSQKwrNbySj06j0a8Ff4qRZz3xmWSEFAFzbHQYdcG89RV2I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franca Lai,,2019-05-18,1,,/profile.php?id=100010517589379&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=380&av=100013534782121&eav=AfbX3RC8gUfNVR8kyUnAQSQKwrNbySj06j0a8Ff4qRZz3xmWSEFAFzbHQYdcG89RV2I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alberto Affatato,,2019-05-18,5,NON MOLLARE MAI MANDA VIA QUELLI DI SINISTRA,/profile.php?id=100005230756636&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=380&av=100013534782121&eav=AfbX3RC8gUfNVR8kyUnAQSQKwrNbySj06j0a8Ff4qRZz3xmWSEFAFzbHQYdcG89RV2I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Schlanser,,2019-05-18,,,/gabriella.schlanser?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=380&av=100013534782121&eav=AfbX3RC8gUfNVR8kyUnAQSQKwrNbySj06j0a8Ff4qRZz3xmWSEFAFzbHQYdcG89RV2I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Schlanser,,2019-05-18,,,/gabriella.schlanser?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=380&av=100013534782121&eav=AfbX3RC8gUfNVR8kyUnAQSQKwrNbySj06j0a8Ff4qRZz3xmWSEFAFzbHQYdcG89RV2I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Sansi,ROOT,2019-05-18,1,RAI News24 informazioni sicuramente di parte sta dicendo che in piazza erano presenti poche migliaia di persone.ORE 18.30.Presenti Caporale e la Guaritore che prenosticano la Caporetto per Salvino.,/antonio.sansi.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543765009363422&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB7AD3gsVVEeaQK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Brigida Virgili,Antonio Sansi,2019-05-18,,Antonio Sansi ma quell'ora era tutto finito.,/profile.php?id=100009742724883&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543765009363422&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB7AD3gsVVEeaQK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Antonio Sansi,Antonio Sansi,2019-05-18,1,Brigida Virgili stavo solo facendo presente sulla falsità delle notizie.,/antonio.sansi.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543765009363422&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB7AD3gsVVEeaQK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lorenzo Romio,ROOT,2019-05-18,1,"E vola, coi soldi dello stato, l’aereo viene pagato, era ad uso privato e ai comizi VOLA",/LorenzoRomio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009797054422&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDjkl1SaRrZqZG3&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fernanda Di Donato,Lorenzo Romio,2019-05-18,,Siete proprio pochino pochino,/fernanda.didonato?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009797054422&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDjkl1SaRrZqZG3&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Grazia Pascoletti,Lorenzo Romio,2019-05-18,,Malox???,/mariagrazia.pascoletti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009797054422&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDjkl1SaRrZqZG3&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniela Alfieri,Lorenzo Romio,2019-05-18,,Renzi lo usava per andare a sciare..,/daniela.alfieri.71?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_471009797054422&count=3&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDjkl1SaRrZqZG3&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Amato Antonio,ROOT,2019-05-18,,"Mi dispiace dire che purtroppo molto di loro non sanno chi salvini ma ben presto, tutti chi lo elogiano si mangeranno le mani",/amato.antonio.100?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_378221856122472&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCRgPl_xZSigKer&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mauro Cavallini,Amato Antonio,2019-05-18,,Amato Antonio Jettatore?,/mauro.cavallini.7311?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_378221856122472&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCRgPl_xZSigKer&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Amato Antonio,Amato Antonio,2019-05-18,,Mauro Cavallini 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣,/amato.antonio.100?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_378221856122472&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCRgPl_xZSigKer&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annabel Narciso,,2019-05-18,2,Miticooo,/annabel.narciso.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=390&av=100013534782121&eav=AfbvgYY3B9J1PcSyBQmswwk_k20IqrVewQaTrw_f0xxp5fHtqU36EUjExCw2b7DkWHo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gaspare Licausi,,2019-05-18,,,/gaspare.licausi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=390&av=100013534782121&eav=AfbvgYY3B9J1PcSyBQmswwk_k20IqrVewQaTrw_f0xxp5fHtqU36EUjExCw2b7DkWHo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Donatelli,,2019-05-18,,,/daniela.donatelli.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=390&av=100013534782121&eav=AfbvgYY3B9J1PcSyBQmswwk_k20IqrVewQaTrw_f0xxp5fHtqU36EUjExCw2b7DkWHo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Savino Wölfe Lupi,,2019-05-18,,,/savilupi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=390&av=100013534782121&eav=AfbvgYY3B9J1PcSyBQmswwk_k20IqrVewQaTrw_f0xxp5fHtqU36EUjExCw2b7DkWHo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Adele Boh,,2019-05-18,1,,/adele.boh?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=390&av=100013534782121&eav=AfbvgYY3B9J1PcSyBQmswwk_k20IqrVewQaTrw_f0xxp5fHtqU36EUjExCw2b7DkWHo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mauro Belotti,,2019-05-18,,,/mauro.belotti.73?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=390&av=100013534782121&eav=AfbvgYY3B9J1PcSyBQmswwk_k20IqrVewQaTrw_f0xxp5fHtqU36EUjExCw2b7DkWHo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Selli,,2019-05-18,,Fai cadere il governo ahah,/profile.php?id=100008403965110&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=390&av=100013534782121&eav=AfbvgYY3B9J1PcSyBQmswwk_k20IqrVewQaTrw_f0xxp5fHtqU36EUjExCw2b7DkWHo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paolo Carozzi,,2019-05-18,,"Grande Salvini e grande anche il popolo della Lega,eravamo tantissimi.",/paolo.carozzi.121?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=390&av=100013534782121&eav=AfbvgYY3B9J1PcSyBQmswwk_k20IqrVewQaTrw_f0xxp5fHtqU36EUjExCw2b7DkWHo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Esposito,,2019-05-18,,,/roberta.esposito.12979?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=390&av=100013534782121&eav=AfbvgYY3B9J1PcSyBQmswwk_k20IqrVewQaTrw_f0xxp5fHtqU36EUjExCw2b7DkWHo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bright Mensah,,2019-05-18,1,Bravo 👏❤️❤️❤️❤️❤️❤️💗💕,/bright.mensah.1690671?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=400&av=100013534782121&eav=AfbLOoc3qTnBvcbmtMA5wQvn24y4kgxDV3Qc7omO654OchO55BBAsQJ0EQHh4P2V3_o&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lidia de Martin,,2019-05-18,,,/lidia.demartin?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=400&av=100013534782121&eav=AfbLOoc3qTnBvcbmtMA5wQvn24y4kgxDV3Qc7omO654OchO55BBAsQJ0EQHh4P2V3_o&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Donatella Favetti,,2019-05-18,,,/donatella.favetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=400&av=100013534782121&eav=AfbLOoc3qTnBvcbmtMA5wQvn24y4kgxDV3Qc7omO654OchO55BBAsQJ0EQHh4P2V3_o&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elisa Carlotto,,2019-05-18,,,/elisa.carlotto.75?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=400&av=100013534782121&eav=AfbLOoc3qTnBvcbmtMA5wQvn24y4kgxDV3Qc7omO654OchO55BBAsQJ0EQHh4P2V3_o&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Martha Milagros Cier Jimenez,,2019-05-18,,,/milagros.jimenez.7549?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=400&av=100013534782121&eav=AfbLOoc3qTnBvcbmtMA5wQvn24y4kgxDV3Qc7omO654OchO55BBAsQJ0EQHh4P2V3_o&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Feletti,,2019-05-18,1,Mi sa quella rossa è un infiltrata... o delusa dai compagni....,/marco.feletti.56?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=400&av=100013534782121&eav=AfbLOoc3qTnBvcbmtMA5wQvn24y4kgxDV3Qc7omO654OchO55BBAsQJ0EQHh4P2V3_o&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nadia Mandressi,,2019-05-18,2,Sei la nostra speranza Matteo!!! ❤❤❤,/nadia.mandressi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=400&av=100013534782121&eav=AfbLOoc3qTnBvcbmtMA5wQvn24y4kgxDV3Qc7omO654OchO55BBAsQJ0EQHh4P2V3_o&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Annabel Narciso,,2019-05-18,,Bravissimo anche voi ragaaa,/annabel.narciso.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=400&av=100013534782121&eav=AfbLOoc3qTnBvcbmtMA5wQvn24y4kgxDV3Qc7omO654OchO55BBAsQJ0EQHh4P2V3_o&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alfonso Parisi,,2019-05-18,,"MATTEO MI RACCOMANDO, CONTINUA CON LA QUOTA 100. SONO SOLDI DI NOI LAVORATORI !!!!!!!!!",/profile.php?id=100004268387669&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=400&av=100013534782121&eav=AfbLOoc3qTnBvcbmtMA5wQvn24y4kgxDV3Qc7omO654OchO55BBAsQJ0EQHh4P2V3_o&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nani Qobalia,,2019-05-18,2,Forza matteo❤,/nani.qobalia.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=400&av=100013534782121&eav=AfbLOoc3qTnBvcbmtMA5wQvn24y4kgxDV3Qc7omO654OchO55BBAsQJ0EQHh4P2V3_o&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carlo Bruno Aversa,ROOT,2019-05-18,,Ma che fai ? La piazza piena solo di passanti e hai pure il coraggio di pubblicare la foto ? 😂Leghista Ignorante,/carlobrunoaversa?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523208155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWNEBlk7jTP6uY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mina Pesenti,Carlo Bruno Aversa,2019-05-18,,Zecca,/mina.pesenti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523208155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWNEBlk7jTP6uY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carlo Bruno Aversa,Carlo Bruno Aversa,2019-05-18,,Mina Pesenti leghista,/carlobrunoaversa?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523208155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWNEBlk7jTP6uY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elena Crippa,Carlo Bruno Aversa,2019-05-18,3,"Carlo Bruno Aversa un altro fenomeno, che ci fai in questa pagina? Se Salvini non ti piace, EVAPORA.",/elena.crippa.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523208155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWNEBlk7jTP6uY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carlo Bruno Aversa,Carlo Bruno Aversa,2019-05-18,,Ahahahahahah parlate come i cartoni animati da due soldi 😂,/carlobrunoaversa?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523208155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWNEBlk7jTP6uY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ferdinando Trella,Carlo Bruno Aversa,2019-05-18,3,Carlo Bruno Aversa,/ferdinando.trella?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523208155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWNEBlk7jTP6uY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuliano Dan,Carlo Bruno Aversa,2019-05-18,3,Carlo Bruno Aversa,/giuly.dan?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523208155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWNEBlk7jTP6uY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elena Crippa,Carlo Bruno Aversa,2019-05-18,,Carlo Bruno Aversa e tu parli come uno che non ha niente da dire.,/elena.crippa.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523208155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWNEBlk7jTP6uY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carlo Bruno Aversa,Carlo Bruno Aversa,2019-05-18,,Elena Crippa 😂😂♥️ bacioni verdi 🇮🇹💚,/carlobrunoaversa?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523208155&count=8&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCWNEBlk7jTP6uY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emanuela Francone,,2019-05-18,,Se ci fosse la grande Oriana Fallaci sarebbe orgogliosa di avere uno come te al governo.,/emanuela.francone.319?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=310&av=100013534782121&eav=AfZfFzXpo9XoI6GuARPrYqdaRwMYIGvQIz9kXKrmqCGhJrn2PXu1MhYYUkhzibsUvrM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vincenzo Lombardi,,2019-05-18,,Avanti Così onorato Matteo Salvini,/vincenzo.lombardi.92?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=310&av=100013534782121&eav=AfZfFzXpo9XoI6GuARPrYqdaRwMYIGvQIz9kXKrmqCGhJrn2PXu1MhYYUkhzibsUvrM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio D'aleo,,2019-05-18,,Sei un mito un politico d altri tempi. Io siciliano voto Lega? Si 👍 e con orgoglio da quattro anni di fila. Vai Matteo l Italia e con te. Conquistiamo l Europa,/antonio.daleo.77?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=310&av=100013534782121&eav=AfZfFzXpo9XoI6GuARPrYqdaRwMYIGvQIz9kXKrmqCGhJrn2PXu1MhYYUkhzibsUvrM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Annalisa Cinus,,2019-05-18,,"Salvini unisciti a Giorgia Meloni, lascia perdere il burattino di Grillo e leccacu del PD",/annalisa.cinus?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=310&av=100013534782121&eav=AfZfFzXpo9XoI6GuARPrYqdaRwMYIGvQIz9kXKrmqCGhJrn2PXu1MhYYUkhzibsUvrM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gian Luca Gisolfi,,2019-05-18,1,Un concerto di Young Signorino a pagamento avrebbe fatto più pubblico di Salvini!!! È stato un flop pazzesco... È inutile postare foto a bassa qualità per riempire i buchi!,/gianluca.gisolfi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=310&av=100013534782121&eav=AfZfFzXpo9XoI6GuARPrYqdaRwMYIGvQIz9kXKrmqCGhJrn2PXu1MhYYUkhzibsUvrM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mariagiuseppina Spanò,,2019-05-18,,"Menzogne , la riforma ORLANDO definitivamente approvata con il suo uomo sottosegretario Morrone. Qui prima del voto ' va abrogata"" oggi la si sostiene e per mostrare che lavorano hanno bollinato un disegno di LEGGE per la RIFORMA copiandola pari pari",/Mariagiuseppina.spano?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=310&av=100013534782121&eav=AfZfFzXpo9XoI6GuARPrYqdaRwMYIGvQIz9kXKrmqCGhJrn2PXu1MhYYUkhzibsUvrM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Kenny Chen,,2019-05-18,,"Il bello di questa foto sono gli ombrelli colorati, i colori dell’arcobaleno, quei colori tanto odiati dalla lega.",/Kenny.Chen.Rock?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=310&av=100013534782121&eav=AfZfFzXpo9XoI6GuARPrYqdaRwMYIGvQIz9kXKrmqCGhJrn2PXu1MhYYUkhzibsUvrM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniele Squillante,ROOT,2019-05-18,2,Grande capitano,/daniele.squillante.35?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407413320100844&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDyQuyB7KbT0P9&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mario Giusti,Daniele Squillante,2019-05-18,,Capitano di che?,/mario.giusti.9235?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407413320100844&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCDyQuyB7KbT0P9&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Terry Pironti,,2019-05-18,,,/terry.pironti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=410&av=100013534782121&eav=Afa2bjnbPJf4IeKssizl57i2ereqMWEF7D13BXda5zTvj5Gm0mfTQnsIzdYFp8nuxsw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Mastrandrea,,2019-05-18,,,/roberta.mastrandrea.351?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=410&av=100013534782121&eav=Afa2bjnbPJf4IeKssizl57i2ereqMWEF7D13BXda5zTvj5Gm0mfTQnsIzdYFp8nuxsw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianluca Lencioni,,2019-05-18,2,Sono li con il cuore,/gianluca.lencioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=410&av=100013534782121&eav=Afa2bjnbPJf4IeKssizl57i2ereqMWEF7D13BXda5zTvj5Gm0mfTQnsIzdYFp8nuxsw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vita Rollo,,2019-05-18,,,/vita.rollo.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=410&av=100013534782121&eav=Afa2bjnbPJf4IeKssizl57i2ereqMWEF7D13BXda5zTvj5Gm0mfTQnsIzdYFp8nuxsw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rino Sponsale,,2019-05-18,2,Grande Matteo asfaltiamo tutti sti ignobili,/rino.sponsale.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=410&av=100013534782121&eav=Afa2bjnbPJf4IeKssizl57i2ereqMWEF7D13BXda5zTvj5Gm0mfTQnsIzdYFp8nuxsw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fazio Carmelo,,2019-05-18,2,Grande,/fazio.carmelo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=410&av=100013534782121&eav=Afa2bjnbPJf4IeKssizl57i2ereqMWEF7D13BXda5zTvj5Gm0mfTQnsIzdYFp8nuxsw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Filì,,2019-05-18,,"Ciao prossimo Presidente del Consiglio di un Governo di Centro Destra, ricaccia i 5stelle nell’anonimato politico, sono inutili",/roberto.fili.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=410&av=100013534782121&eav=Afa2bjnbPJf4IeKssizl57i2ereqMWEF7D13BXda5zTvj5Gm0mfTQnsIzdYFp8nuxsw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Kàris Pellegrino,,2019-05-18,,,/karis.pellegrino?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=410&av=100013534782121&eav=Afa2bjnbPJf4IeKssizl57i2ereqMWEF7D13BXda5zTvj5Gm0mfTQnsIzdYFp8nuxsw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bausi,,2019-05-18,1,"Pure a me dispiace di non esserci, sono col 💚",/profile.php?id=100009684131340&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=410&av=100013534782121&eav=Afa2bjnbPJf4IeKssizl57i2ereqMWEF7D13BXda5zTvj5Gm0mfTQnsIzdYFp8nuxsw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Iolanda Filograno,ROOT,2019-05-18,3,Sono contenta. Di questo ultimo periodo. Nessuna piazza italiana è stata così piena. Neanche quelle domenicali di ROMA.,/iolanda.filograno.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265841417002321&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQANk3iXkHFwQG-P&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annita Terruli,Iolanda Filograno,2019-05-18,,Iolanda Filograno anche a carnevale piazza e sempre piena a Milano e una piazza multicolor hahahaha,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265841417002321&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQANk3iXkHFwQG-P&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mario Iovino,ROOT,2019-05-18,2,Ammazza che flop 😂,/mario.iovino.31?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663873155234&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCYOS2B_O7oeGVo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Monica Gastaldi,Mario Iovino,2019-05-18,1,Ma quanto stai rodendo?😂😂😂😂,/monica.gastaldi.779?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663873155234&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCYOS2B_O7oeGVo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marina Neri,Mario Iovino,2019-05-18,1,Brucia vero?,/marina.neri.908?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663873155234&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCYOS2B_O7oeGVo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ania Aglie,Mario Iovino,2019-05-18,,Ma che flop rosicone,/luigi.nagliero?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663873155234&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCYOS2B_O7oeGVo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Salvatore AF,Mario Iovino,2019-05-18,3,Beh un po di più di quelli che fa Zingaretti basta questo non credi,/zioaire?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663873155234&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCYOS2B_O7oeGVo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Franco Galisai,Mario Iovino,2019-05-18,,Forse un po' di più dei flop che ha fatto il PD in tutti questi ultimi anni 😂😂😂,/franco.gallisai?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663873155234&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCYOS2B_O7oeGVo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lucrezia Sonja Dalla Rosa,Mario Iovino,2019-05-18,,ti brucia da morire vero. sempre moltissimi di più di quelli di Zingaretti e di pallone gonfiato e campione di ARROGANZA Di Maio !!!!,/lucreziasonjaDRG?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663873155234&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCYOS2B_O7oeGVo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elisa Buccafurni,Mario Iovino,2019-05-18,,Non sai che dire e dici flop ma l'hai vista la piazza o hai i prosciutti sugli occhi,/buccafurnie?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663873155234&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCYOS2B_O7oeGVo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Enrica Pennè,Mario Iovino,2019-05-18,,Qui l'unico flop sei tu,/enrica.penne1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145663873155234&count=8&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQCYOS2B_O7oeGVo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Epifanio Barbagallo,ROOT,2019-05-18,,Ed intanto gli sbarchi continuano caro ministro e cari leghisti siete solo dei pulcinella,/epifanio.barbagallo?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543772092696047&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDalg3cEyfIShJp&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sergio Girardi,Epifanio Barbagallo,2019-05-18,1,Epifanio Barbagallo grazie ai tuoi compari,/sergio.girardi5647?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543772092696047&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDalg3cEyfIShJp&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Francesco Ciccio Calì,Epifanio Barbagallo,2019-05-18,,Caro Fano forse dovresti chiedere conto ai tuoi amici: Conte Di Maio e Trenta. Per me la soluzione è semplice si fanno scendere le persone che si riportano immediatamente in Libia e si affonda la nave. Poi vedi in quanti ci provano. Ma il M5s è improvvisamente diventato più di sinistra del Pd.,/francesco.c.cali?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543772092696047&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDalg3cEyfIShJp&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolo Tesauro,,2019-05-18,,E domani a Sassuolo....forza ministro ...sarà lunga e dura ...ma hai la crosta !,/profile.php?id=100003874839661&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=320&av=100013534782121&eav=AfYLu3rV5H77BOSZg2rNHommv3fXel_4MbQtUMEFwNeu-o-RGpAGKG4TYHktwtvtYbU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +MariaTeresa Pandolfo,,2019-05-18,1,Congratulazioni Salvini ! Giorno dopo giorno Lei dimostra di essere un Uomo serio paziente educato intelligente con i polsi e da vero Patriota ama l’Italia e Noi Italiani !!!,/mariateresa.pandolfo.73?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=320&av=100013534782121&eav=AfYLu3rV5H77BOSZg2rNHommv3fXel_4MbQtUMEFwNeu-o-RGpAGKG4TYHktwtvtYbU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigi Bonanno,,2019-05-18,1,"Gigino Di Maio avrebbe guadagnato bene se in questa folla avesse venduto bibite,e panini.😂😂😂😂😂🤣",/luigi.bonanno.144?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=320&av=100013534782121&eav=AfYLu3rV5H77BOSZg2rNHommv3fXel_4MbQtUMEFwNeu-o-RGpAGKG4TYHktwtvtYbU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ottavio Rossi,,2019-05-18,1,"Matteo sei l ultima possibilità di riscatto x noi italiani ! Vai avanti così! I 5st dimostrano quanto siano comunisti , sono usciti allo scoperto .",/ottavio.rossi.127?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=320&av=100013534782121&eav=AfYLu3rV5H77BOSZg2rNHommv3fXel_4MbQtUMEFwNeu-o-RGpAGKG4TYHktwtvtYbU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Augusto Andreoli,,2019-05-18,,"Senza parole. Ecco, bravo, stai zitto, così eviti di sparare cazzate! Baüscia!",/augusto.andreoli.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=320&av=100013534782121&eav=AfYLu3rV5H77BOSZg2rNHommv3fXel_4MbQtUMEFwNeu-o-RGpAGKG4TYHktwtvtYbU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elfi Mitterhofer,,2019-05-18,,"GRANDE !! Oggi sei stato grande !! Stupendo comizio , bellissimi interventi degli altri leader, le traduzioni purtroppo non proprio fedeli e direi sminutive rispetto a quanto espresso nelle lingue originali . Comunque un successone !!!",/elfi.mitterhofer?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=320&av=100013534782121&eav=AfYLu3rV5H77BOSZg2rNHommv3fXel_4MbQtUMEFwNeu-o-RGpAGKG4TYHktwtvtYbU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +StefanoeElena Ddp,,2019-05-18,,Uguale alle piazze che riempiono i Pidioti morti di fame,/stefano.ddp?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=320&av=100013534782121&eav=AfYLu3rV5H77BOSZg2rNHommv3fXel_4MbQtUMEFwNeu-o-RGpAGKG4TYHktwtvtYbU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Ruggiero,,2019-05-18,2,Lasciali rosicare capitano! Avrei voluto tanto essere lì! 💚,/paola.ruggiero.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=320&av=100013534782121&eav=AfYLu3rV5H77BOSZg2rNHommv3fXel_4MbQtUMEFwNeu-o-RGpAGKG4TYHktwtvtYbU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,ROOT,2019-05-18,1,,/arianna.scipioni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_641990426264462&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBgp4GiMzuFiYqx&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Serrau,Arianna Scipioni,2019-05-18,1,Che togoooo😝,/profile.php?id=100013239524588&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_641990426264462&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBgp4GiMzuFiYqx&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Grazia Barzaghi,,2019-05-18,,,/grazia.barzaghi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=420&av=100013534782121&eav=AfbWQjJu25X35yFLR9CuK44PsmcNQQ1FtVVJO3y-eKYnpdjB2J6Q0EGPZIT9r0DIMdg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liliana Tessera,,2019-05-18,,Io spero di poterti incontrare con calma x ringraziarti,/casa.delsorriso.796?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=420&av=100013534782121&eav=AfbWQjJu25X35yFLR9CuK44PsmcNQQ1FtVVJO3y-eKYnpdjB2J6Q0EGPZIT9r0DIMdg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Olga PT,,2019-05-18,,Sei bellissimo capitanooooooo,/olga.pt?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=420&av=100013534782121&eav=AfbWQjJu25X35yFLR9CuK44PsmcNQQ1FtVVJO3y-eKYnpdjB2J6Q0EGPZIT9r0DIMdg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loreta Prenz,,2019-05-18,2,Jovanotti comunista noooooo,/loreta.prenz?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=420&av=100013534782121&eav=AfbWQjJu25X35yFLR9CuK44PsmcNQQ1FtVVJO3y-eKYnpdjB2J6Q0EGPZIT9r0DIMdg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Clary Splendore,,2019-05-18,,,/profile.php?id=100009887854760&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=420&av=100013534782121&eav=AfbWQjJu25X35yFLR9CuK44PsmcNQQ1FtVVJO3y-eKYnpdjB2J6Q0EGPZIT9r0DIMdg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Clary Splendore,,2019-05-18,,,/profile.php?id=100009887854760&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=420&av=100013534782121&eav=AfbWQjJu25X35yFLR9CuK44PsmcNQQ1FtVVJO3y-eKYnpdjB2J6Q0EGPZIT9r0DIMdg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pina Iann,,2019-05-18,2,Forza Salvini che ce la farai te lo auguro di vero cuore !!!,/pina.iann?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=420&av=100013534782121&eav=AfbWQjJu25X35yFLR9CuK44PsmcNQQ1FtVVJO3y-eKYnpdjB2J6Q0EGPZIT9r0DIMdg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Pilosio,,2019-05-18,1,Prove di vittoria schiacciante,/antonio.pilosio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=420&av=100013534782121&eav=AfbWQjJu25X35yFLR9CuK44PsmcNQQ1FtVVJO3y-eKYnpdjB2J6Q0EGPZIT9r0DIMdg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Armand Elezi,ROOT,2019-05-18,,"Speriamo che siano fatti che le parole le dice pure un barbone di strada ma non li mantiene, spero che fai veramente qualcosa per l'Italia perche fin'quando continua ad esistere la Germania non alzeremo la testa la Germania ormai comanda l'europa sono cambiati i ruoli caro ministro non è più al centro d'Europa l'Italia",/andi.elezi313?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622541083155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAowuTbc6ccRRPH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Mezzogori,Armand Elezi,2019-05-18,,"Armand Elezi a te fa piacere che l'Europa decida x noi? Anche vietare di rimpatriare i delinquenti , perché ai loro paesi li condannerebbero alla morte ? Quindi tocca a noi mantenerli e poi ci pugnalano alla schiena, sono malvagi di natura !",/maria.mezzogori.75?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622541083155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAowuTbc6ccRRPH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Armand Elezi,Armand Elezi,2019-05-18,,Maria Mezzogori non mi hai capito rileggi,/andi.elezi313?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622541083155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAowuTbc6ccRRPH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Armand Elezi,Armand Elezi,2019-05-18,1,Maria Mezzogori io sono Albanese nato in Albania sangue puro albanese e me ne fotto del mio paese non mi frega piu di tanto l'amore che l'Italia mi ha dato negli anni in cui vivevo per me sono pari ad una vita umana rispetto l'Italia al massimo,/andi.elezi313?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622541083155&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAowuTbc6ccRRPH&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Franca Negri,,2019-05-18,1,GRANDE MINISTRO. 💚💚💚💚💚,/franca.negri.18?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=430&av=100013534782121&eav=AfZSmcU5HXzB6pUgieEGQ2Yt4mAtalkAedes7yjsQFAmTMx0is-JQgMBxpDVgbkoGIU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marialuisa Nannini,,2019-05-18,,Bravo Matteo io c'ero,/mluisanannini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=430&av=100013534782121&eav=AfZSmcU5HXzB6pUgieEGQ2Yt4mAtalkAedes7yjsQFAmTMx0is-JQgMBxpDVgbkoGIU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Miyazaki,,2019-05-18,1,Si vincerà!,/arianna.polcino?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=430&av=100013534782121&eav=AfZSmcU5HXzB6pUgieEGQ2Yt4mAtalkAedes7yjsQFAmTMx0is-JQgMBxpDVgbkoGIU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fumarola Marica,,2019-05-18,1,Forza Matteo..,/fumarola.marica?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=430&av=100013534782121&eav=AfZSmcU5HXzB6pUgieEGQ2Yt4mAtalkAedes7yjsQFAmTMx0is-JQgMBxpDVgbkoGIU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Guffanti Secondo,,2019-05-18,3,Nessuno come te. La gente ti ama.,/maurizio.guffanti.54?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=430&av=100013534782121&eav=AfZSmcU5HXzB6pUgieEGQ2Yt4mAtalkAedes7yjsQFAmTMx0is-JQgMBxpDVgbkoGIU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mario Luciano Rizzo,,2019-05-18,,Grande Matteo,/marioluciano.rizzo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=430&av=100013534782121&eav=AfZSmcU5HXzB6pUgieEGQ2Yt4mAtalkAedes7yjsQFAmTMx0is-JQgMBxpDVgbkoGIU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marinella Sanna,,2019-05-18,,,/marinella.sanna.71?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=430&av=100013534782121&eav=AfZSmcU5HXzB6pUgieEGQ2Yt4mAtalkAedes7yjsQFAmTMx0is-JQgMBxpDVgbkoGIU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tina Accurso,,2019-05-18,1,Salvini siamo con te non deluderci,/profile.php?id=100008411359314&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=430&av=100013534782121&eav=AfZSmcU5HXzB6pUgieEGQ2Yt4mAtalkAedes7yjsQFAmTMx0is-JQgMBxpDVgbkoGIU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Malavasi,,2019-05-18,2,Una emozione la gente,/profile.php?id=100010342811774&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=430&av=100013534782121&eav=AfZSmcU5HXzB6pUgieEGQ2Yt4mAtalkAedes7yjsQFAmTMx0is-JQgMBxpDVgbkoGIU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Annalisa Tassi,,2019-05-18,1,Siamo tutti con te!,/annalisatassi.davidetrotta?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=430&av=100013534782121&eav=AfZSmcU5HXzB6pUgieEGQ2Yt4mAtalkAedes7yjsQFAmTMx0is-JQgMBxpDVgbkoGIU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Tranchina,,2019-05-18,,Per una città di quella grandezza mi aspettavo un po' piú di gente....speriamo che votino bene....qst volta,/giuseppe.tranchina.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=330&av=100013534782121&eav=AfZBGTh6RoSrBkFMY0SsLOr7qtbJvTvGfXokcGu9UqU19C901Hxi-zTT_lnNyeSxqPg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziella Galliano,,2019-05-18,1,È stato assolutamente fan tastico...e quante persone educate e entusiaste...grazie grande Matteo,/graziella.galliano.77?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=330&av=100013534782121&eav=AfZBGTh6RoSrBkFMY0SsLOr7qtbJvTvGfXokcGu9UqU19C901Hxi-zTT_lnNyeSxqPg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Gentile,,2019-05-18,,E voi che avete fatto per.la Magistratura Onoraria????atte decano un decreto legge che avesse migliorato le nostre disastrose situazioni...invece ci avete umiliato con.un.disegno di legge..disdicevole..E no rispettoso della dignità fi Servitori della Patria,/rosanna.gentile.735?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=330&av=100013534782121&eav=AfZBGTh6RoSrBkFMY0SsLOr7qtbJvTvGfXokcGu9UqU19C901Hxi-zTT_lnNyeSxqPg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alberto Piovani,,2019-05-18,1,Sotto quell'acqua: Erano tutti Pd a vedere i leghisti che sarebbero venuti?,/profile.php?id=100009035166100&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=330&av=100013534782121&eav=AfZBGTh6RoSrBkFMY0SsLOr7qtbJvTvGfXokcGu9UqU19C901Hxi-zTT_lnNyeSxqPg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Zilioli,,2019-05-18,1,Fantastico ......il PD colpito ed affondato!!!! Rosicano Rosicano,/patrizia.zilioli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=330&av=100013534782121&eav=AfZBGTh6RoSrBkFMY0SsLOr7qtbJvTvGfXokcGu9UqU19C901Hxi-zTT_lnNyeSxqPg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alba Chiara,,2019-05-18,,Se ci saremo tutti il 26/5 non ci sarà posto per nessuno ...dipende da noi ...la nostra vita,/ALBACHIARISSIMA?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=330&av=100013534782121&eav=AfZBGTh6RoSrBkFMY0SsLOr7qtbJvTvGfXokcGu9UqU19C901Hxi-zTT_lnNyeSxqPg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe D'agostino,,2019-05-18,1,Speriamo di continuare così!! Per adesso non posso che dire Grande Matteo!! 👏👏👏,/giuseppe.dagostino.73?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=330&av=100013534782121&eav=AfZBGTh6RoSrBkFMY0SsLOr7qtbJvTvGfXokcGu9UqU19C901Hxi-zTT_lnNyeSxqPg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ida Luciano,,2019-05-18,,Fiera di tutta questa partecipazione straordinaria forza Capitano siamo con te,/ida.luciano.96?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=330&av=100013534782121&eav=AfZBGTh6RoSrBkFMY0SsLOr7qtbJvTvGfXokcGu9UqU19C901Hxi-zTT_lnNyeSxqPg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ilario Cotza,,2019-05-18,,Forza Salvini Forza Salvini che vinceremo e vincera rifaremo la storia rifaremo L'Italia del cambiamento...l'europa ci rispetteraaaaaa.... provate a cantarla come volete voi,/ilario.cotza?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=330&av=100013534782121&eav=AfZBGTh6RoSrBkFMY0SsLOr7qtbJvTvGfXokcGu9UqU19C901Hxi-zTT_lnNyeSxqPg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liliana Dazzi,,2019-05-18,,Auguri!,/liliana.dazzi.92?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=440&av=100013534782121&eav=AfYljkeqpnF-_YIp9FsHZlZegq3PxLmmcMW1CrBBQHXcyqPlu7JPjR0aBKj78rC-lio&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Oscar Austoni,,2019-05-18,,Mitico Salvini...grazieee,/oscar.austoni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=440&av=100013534782121&eav=AfYljkeqpnF-_YIp9FsHZlZegq3PxLmmcMW1CrBBQHXcyqPlu7JPjR0aBKj78rC-lio&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Iacullo,,2019-05-18,,👏👏👏👏👏👌👌👌non si stanga mai e ancora li 😘😘😘,/maria.iacullo.94?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=440&av=100013534782121&eav=AfYljkeqpnF-_YIp9FsHZlZegq3PxLmmcMW1CrBBQHXcyqPlu7JPjR0aBKj78rC-lio&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Iacullo,,2019-05-18,1,Sei grandissimooo💚💚💚❤❤❤,/maria.iacullo.94?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=440&av=100013534782121&eav=AfYljkeqpnF-_YIp9FsHZlZegq3PxLmmcMW1CrBBQHXcyqPlu7JPjR0aBKj78rC-lio&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovana Yremia,,2019-05-18,,Grazie CORRUPTI,/giovana.yremia?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=440&av=100013534782121&eav=AfYljkeqpnF-_YIp9FsHZlZegq3PxLmmcMW1CrBBQHXcyqPlu7JPjR0aBKj78rC-lio&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Barbara Antenucci,,2019-05-18,,Ciaoooo,/barbara.antenucci?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=440&av=100013534782121&eav=AfYljkeqpnF-_YIp9FsHZlZegq3PxLmmcMW1CrBBQHXcyqPlu7JPjR0aBKj78rC-lio&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mariagrazia Colo,,2019-05-18,,,/mariagrazia.colo.14?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=440&av=100013534782121&eav=AfYljkeqpnF-_YIp9FsHZlZegq3PxLmmcMW1CrBBQHXcyqPlu7JPjR0aBKj78rC-lio&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Dora Liberatore,,2019-05-18,2,Lo sento immensamente il cuore che batte ❤️💚💚,/profile.php?id=100008773004727&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=440&av=100013534782121&eav=AfYljkeqpnF-_YIp9FsHZlZegq3PxLmmcMW1CrBBQHXcyqPlu7JPjR0aBKj78rC-lio&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Gagliostro,,2019-05-18,1,,/giovanna.gagliostro?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=440&av=100013534782121&eav=AfYljkeqpnF-_YIp9FsHZlZegq3PxLmmcMW1CrBBQHXcyqPlu7JPjR0aBKj78rC-lio&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mario Luongo,,2019-05-18,1,Daje sarvi faje li bozzi a sti quattro sbandati,/mario.luongo.9619?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=440&av=100013534782121&eav=AfYljkeqpnF-_YIp9FsHZlZegq3PxLmmcMW1CrBBQHXcyqPlu7JPjR0aBKj78rC-lio&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Zampaglione,,2019-05-18,1,A te grazie. E come potevo mancare ❤️,/emanuela.zampaglione?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=450&av=100013534782121&eav=AfY-Um8wK24BlHi5JLPkYAd0lGlHA-rHahHhfRIZEt1YY0W_DCBHpAfMgC_8GfKjUb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lola Lotarda,,2019-05-18,,AMORE DI CAPITANO,/lola.lotarda?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=450&av=100013534782121&eav=AfY-Um8wK24BlHi5JLPkYAd0lGlHA-rHahHhfRIZEt1YY0W_DCBHpAfMgC_8GfKjUb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Floriana Panizza,,2019-05-18,,Grande capitano 😘,/floriana.panizza?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=450&av=100013534782121&eav=AfY-Um8wK24BlHi5JLPkYAd0lGlHA-rHahHhfRIZEt1YY0W_DCBHpAfMgC_8GfKjUb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Annalisa Tassi,,2019-05-18,1,Come vorrei essere lì con voi !!,/annalisatassi.davidetrotta?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=450&av=100013534782121&eav=AfY-Um8wK24BlHi5JLPkYAd0lGlHA-rHahHhfRIZEt1YY0W_DCBHpAfMgC_8GfKjUb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fernanda Mazzuca,,2019-05-18,,Grande Salvini,/profile.php?id=100012547382424&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=450&av=100013534782121&eav=AfY-Um8wK24BlHi5JLPkYAd0lGlHA-rHahHhfRIZEt1YY0W_DCBHpAfMgC_8GfKjUb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Valeria Ravazzi,,2019-05-18,,Libera Milano dalla tua presenza!!!!,/valeria.ravazzi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=450&av=100013534782121&eav=AfY-Um8wK24BlHi5JLPkYAd0lGlHA-rHahHhfRIZEt1YY0W_DCBHpAfMgC_8GfKjUb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sandra Fadel,,2019-05-18,,Ciao Matteo...,/sanfadel?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=450&av=100013534782121&eav=AfY-Um8wK24BlHi5JLPkYAd0lGlHA-rHahHhfRIZEt1YY0W_DCBHpAfMgC_8GfKjUb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Pozzoni,,2019-05-18,1,Grande Matteo!!!!!,/paola.pozzoni.12?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=450&av=100013534782121&eav=AfY-Um8wK24BlHi5JLPkYAd0lGlHA-rHahHhfRIZEt1YY0W_DCBHpAfMgC_8GfKjUb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franco Rivolta,,2019-05-18,3,molla i grillini e prendi la meloni,/franco.rivolta.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=450&av=100013534782121&eav=AfY-Um8wK24BlHi5JLPkYAd0lGlHA-rHahHhfRIZEt1YY0W_DCBHpAfMgC_8GfKjUb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Amedeo Fanti,,2019-05-18,,Grande Salvini,/amedeo.fanti.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=450&av=100013534782121&eav=AfY-Um8wK24BlHi5JLPkYAd0lGlHA-rHahHhfRIZEt1YY0W_DCBHpAfMgC_8GfKjUb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Guglielmo Comin,ROOT,2019-05-18,,"L'ha scattata Zorro questa foto? L'inquadratura sembra proprio quella, prima che la Digos (inspiegabilmente) l'ha portato via, con tanto di striscione (il piú sobrio mai esposto ad oggi). E noi paghiamo 💸💸💸",/guglielmo.comin?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265841587002304&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCcr5fWmgWwS3eX&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,Guglielmo Comin,2019-05-18,,"Guglielmo Comin la foto che gira é di diverse ore prima della manifestazione. Per chi non é cieco, si vede benissimo che il palco é ancora vuoto.",/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265841587002304&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCcr5fWmgWwS3eX&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Guglielmo Comin,Guglielmo Comin,2019-05-18,,"Quindi se molto prima è legittimo intervenire con forze dell'ordine e legittimare ingiustizie etiche, intellettuali e morali? Siete fantastici e totalmente incapaci di gestire qualunque tipo d'opposizione ideale se non con la soppressione forzata.",/guglielmo.comin?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265841587002304&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCcr5fWmgWwS3eX&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simonetta Alteri,,2019-05-18,2,È STATO UNK SPETTACOLO...GRAZIE .ATTEO!!!🇮🇹💚,/simonetta.alteri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=460&av=100013534782121&eav=AfYY19C0M91JKMHRsZ3J__DSKqsbMGFJ5Jj6Axhc-7GYSkb5a8AWOCSyCSOCIyBb0IQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Grazia,,2019-05-18,,Anche tu a noi😘,/noysa.grazia?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=460&av=100013534782121&eav=AfYY19C0M91JKMHRsZ3J__DSKqsbMGFJ5Jj6Axhc-7GYSkb5a8AWOCSyCSOCIyBb0IQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabio Magni,,2019-05-18,,Grazie Grande Matteo non mollare che noi non molliamo 💪💪💪,/fabio.magni.75?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=460&av=100013534782121&eav=AfYY19C0M91JKMHRsZ3J__DSKqsbMGFJ5Jj6Axhc-7GYSkb5a8AWOCSyCSOCIyBb0IQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Margherita Fro,,2019-05-18,,E vai peccato che nn sono riuscita a venire li😘,/mariamargherita.fro?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=460&av=100013534782121&eav=AfYY19C0M91JKMHRsZ3J__DSKqsbMGFJ5Jj6Axhc-7GYSkb5a8AWOCSyCSOCIyBb0IQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Maria Arici,,2019-05-18,,Metti la giacca che fa frecce❤️,/annamaria.arici.31?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=460&av=100013534782121&eav=AfYY19C0M91JKMHRsZ3J__DSKqsbMGFJ5Jj6Axhc-7GYSkb5a8AWOCSyCSOCIyBb0IQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liliana Tessera,,2019-05-18,2,Il nostro cuore batte x te,/casa.delsorriso.796?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=460&av=100013534782121&eav=AfYY19C0M91JKMHRsZ3J__DSKqsbMGFJ5Jj6Axhc-7GYSkb5a8AWOCSyCSOCIyBb0IQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liliana Tessera,,2019-05-18,,In Europa Matteo e Pietro,/casa.delsorriso.796?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=460&av=100013534782121&eav=AfYY19C0M91JKMHRsZ3J__DSKqsbMGFJ5Jj6Axhc-7GYSkb5a8AWOCSyCSOCIyBb0IQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Barbara Borzaga,,2019-05-18,,Grande Matteo!!!,/barbara.borzaga.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=460&av=100013534782121&eav=AfYY19C0M91JKMHRsZ3J__DSKqsbMGFJ5Jj6Axhc-7GYSkb5a8AWOCSyCSOCIyBb0IQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vincenzo Maurizio Fasone,,2019-05-18,,Si ... si vince !,/vincenzomaurizio.fasone?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=460&av=100013534782121&eav=AfYY19C0M91JKMHRsZ3J__DSKqsbMGFJ5Jj6Axhc-7GYSkb5a8AWOCSyCSOCIyBb0IQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Filomena Matturro,,2019-05-18,,Si si sei unico,/filomena.matturro.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=460&av=100013534782121&eav=AfYY19C0M91JKMHRsZ3J__DSKqsbMGFJ5Jj6Axhc-7GYSkb5a8AWOCSyCSOCIyBb0IQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rocco Lopriore,,2019-05-18,,"Scusami Matte', però queste foto sono un po' come la figa di Instagram che poi dal vivo è un cesso allucinante.",/rocco.lopriore?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=340&av=100013534782121&eav=AfaKpRMO7hIljpRzlY-IQgGsMwulxToj4TdknvuLX9G3YXWHo_zKtAx-i8Vpyqb1hZY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Donatella Danzi,,2019-05-18,1,Il 26 maggio o Matteo Salvini o Giorgia Meloni gli unici che possono cambiare questa Europa,/donatella.danzi.92?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=340&av=100013534782121&eav=AfaKpRMO7hIljpRzlY-IQgGsMwulxToj4TdknvuLX9G3YXWHo_zKtAx-i8Vpyqb1hZY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Renato Barbarino,,2019-05-18,1,"Sicuramente per tutti i PiDioti e giornalisti sinistroidi imbecilli, in piazza c'erano soltanto 1000/2000 partecipanti.!! 😂😂🇮🇹🇮🇹",/renato.barbarino?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=340&av=100013534782121&eav=AfaKpRMO7hIljpRzlY-IQgGsMwulxToj4TdknvuLX9G3YXWHo_zKtAx-i8Vpyqb1hZY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Repetti,,2019-05-18,1,Ho seguito tutto. Le prime notizie della stampa mainstream sono la dimostrazione che NON ESISTONO MEZZI DI INFORMAZIONE.,/mrepetti79?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=340&av=100013534782121&eav=AfaKpRMO7hIljpRzlY-IQgGsMwulxToj4TdknvuLX9G3YXWHo_zKtAx-i8Vpyqb1hZY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniele Massari,,2019-05-18,,Vinci la settimana prox così ripulisci tutto quel sudiciume che c’è a Bruxelles,/daniele.massari.39?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=340&av=100013534782121&eav=AfaKpRMO7hIljpRzlY-IQgGsMwulxToj4TdknvuLX9G3YXWHo_zKtAx-i8Vpyqb1hZY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Danilo Piccolo,,2019-05-18,,Senza parole anch’io considerando la rimozione dell’ennesimo striscione con scritto “RESTIAMO UMANI”! Viva la democrazia che alla pari di chi vi ha preceduti state contribuendo a far morire!,/danilo.piccolo.75?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=340&av=100013534782121&eav=AfaKpRMO7hIljpRzlY-IQgGsMwulxToj4TdknvuLX9G3YXWHo_zKtAx-i8Vpyqb1hZY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gallo Graziano,,2019-05-18,1,Avanti così.. la sinistra è il loro elettorato demente devono rosicare.,/gallo.graziano?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=340&av=100013534782121&eav=AfaKpRMO7hIljpRzlY-IQgGsMwulxToj4TdknvuLX9G3YXWHo_zKtAx-i8Vpyqb1hZY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Pia Collura,,2019-05-18,3,Siamo orgogliosi di te grande MINISTRO MATTEO SALVINI grandissimo è grazie CAPITANO vai avanti 👍😘😘,/angelapia.collura?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=340&av=100013534782121&eav=AfaKpRMO7hIljpRzlY-IQgGsMwulxToj4TdknvuLX9G3YXWHo_zKtAx-i8Vpyqb1hZY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ma Riella,,2019-05-18,,"Passerà alla storia questa favolosa giornata. Ce la farai Capitano, hai una grinta da leone, non ti fermi mai. Discorso che tiene testa a tutti coloro che tentano di convincere ma invano. Parlando a braccio dimostri come i discorsi escono a getto continuo e convinci, così, chi ti ascolta! Sei una eccellenza!",/maria.centrone.12?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=340&av=100013534782121&eav=AfaKpRMO7hIljpRzlY-IQgGsMwulxToj4TdknvuLX9G3YXWHo_zKtAx-i8Vpyqb1hZY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emidio Antonio Delli Carri,,2019-05-18,,Bravo...!!!,/SIROCHKA?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=470&av=100013534782121&eav=AfYdSSxdSfXtg0-lIbtQG9N1AmwFKeIxW9VGl9JhTrEuiCSO5jHFLu896zCvWjHvxEc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Jess Fortunati,,2019-05-18,3,C piace !!!!!,/jesssfortunati?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=470&av=100013534782121&eav=AfYdSSxdSfXtg0-lIbtQG9N1AmwFKeIxW9VGl9JhTrEuiCSO5jHFLu896zCvWjHvxEc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tarcisio Cremonesi,,2019-05-18,2,Forza matteo siamo tutti con la legaaaaa,/tarcisio.cremonesi.73?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=470&av=100013534782121&eav=AfYdSSxdSfXtg0-lIbtQG9N1AmwFKeIxW9VGl9JhTrEuiCSO5jHFLu896zCvWjHvxEc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monika Měkotová,,2019-05-18,4,Non sono lì di persona ma con il 💓,/monika.mekotova?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=470&av=100013534782121&eav=AfYdSSxdSfXtg0-lIbtQG9N1AmwFKeIxW9VGl9JhTrEuiCSO5jHFLu896zCvWjHvxEc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorena Villa,,2019-05-18,,,/lorena.villa.1829?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=470&av=100013534782121&eav=AfYdSSxdSfXtg0-lIbtQG9N1AmwFKeIxW9VGl9JhTrEuiCSO5jHFLu896zCvWjHvxEc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Giustini,,2019-05-18,1,Sei un Leone Capitano!!,/francesca.giustini2?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=470&av=100013534782121&eav=AfYdSSxdSfXtg0-lIbtQG9N1AmwFKeIxW9VGl9JhTrEuiCSO5jHFLu896zCvWjHvxEc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Davide Mazzeo,,2019-05-18,,Quanti striscioni hai tolto oggi ??,/davide.mazzeo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=470&av=100013534782121&eav=AfYdSSxdSfXtg0-lIbtQG9N1AmwFKeIxW9VGl9JhTrEuiCSO5jHFLu896zCvWjHvxEc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franca Riboldi,,2019-05-18,,Ciao Matteo ❤️😘,/profile.php?id=100008564853097&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=470&av=100013534782121&eav=AfYdSSxdSfXtg0-lIbtQG9N1AmwFKeIxW9VGl9JhTrEuiCSO5jHFLu896zCvWjHvxEc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Scipione,,2019-05-18,,Vai Capitano_!!!! Non mollare!!!!!,/antonella.scipione.18?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=470&av=100013534782121&eav=AfYdSSxdSfXtg0-lIbtQG9N1AmwFKeIxW9VGl9JhTrEuiCSO5jHFLu896zCvWjHvxEc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Brigitta Tarasconi,,2019-05-18,,Grande Matteo nn mollare,/britarasconi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=470&av=100013534782121&eav=AfYdSSxdSfXtg0-lIbtQG9N1AmwFKeIxW9VGl9JhTrEuiCSO5jHFLu896zCvWjHvxEc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Kevin Milano,ROOT,2019-05-18,,"Vabbè, te la tiri tanto e alla fine non siete un granché!! Se metti che tra quelli ci sono anche i contestatori.... Speriamo che passi 'sta sbornia e che sparisci presto! Tanti sorrisi!!! ***",/kevin.milano.969?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622575673155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDh421dJqo7vsyv&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuliano Dan,Kevin Milano,2019-05-18,2,Kevin Milano,/giuly.dan?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622575673155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDh421dJqo7vsyv&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Kevin Milano,Kevin Milano,2019-05-18,,*ha portato,/kevin.milano.969?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622575673155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDh421dJqo7vsyv&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luca Locatelli,Kevin Milano,2019-05-18,,"Kevin Milano speriamo che continui invece,per un Italia più pulita.",/profile.php?id=100000268583126&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622575673155&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDh421dJqo7vsyv&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ariful Hasan,ROOT,2019-05-18,,Ti prego,/profile.php?id=100026650849821&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145665079821780&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBOpANNrMtbygyM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gabriella Rossi,Ariful Hasan,2019-05-18,,Prega a casa tua,/gabriella.rossi.140?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145665079821780&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBOpANNrMtbygyM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gabriella Rossi,Ariful Hasan,2019-05-18,,Vai a vederti qualche cartone animato,/gabriella.rossi.140?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145665079821780&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBOpANNrMtbygyM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Ketty Kelly,,2019-05-18,2,Sei un grande coraggioso uomo politico e cittadino onesto! Meriti la Fiducia e i cittadini lo hanno capito!😘😘😘😘,/ketty.kelly.79274?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=350&av=100013534782121&eav=AfZdkMmSMWgisB8hGqZV8FJMARSmhif2X4gOqDQN4r55076HwEXdoYY6CUu9D1-Df1w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gloria Mandracchia,,2019-05-18,1,Dove hai portato Zorro?? RESTIAMO UMANI! #salvinibaciamilano,/gloria.mandracchia?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=350&av=100013534782121&eav=AfZdkMmSMWgisB8hGqZV8FJMARSmhif2X4gOqDQN4r55076HwEXdoYY6CUu9D1-Df1w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Militello,,2019-05-18,,Bravo Salvini questi sono migliaia di persone non quei quattro gatti del pd,/maria.militello.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=350&av=100013534782121&eav=AfZdkMmSMWgisB8hGqZV8FJMARSmhif2X4gOqDQN4r55076HwEXdoYY6CUu9D1-Df1w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Salvatore Cacucci,,2019-05-18,,Il tg 3 non ha vedere nulla della folla. Via canone dalla bolletta e tetto agli stipendi della rai,/salvatore.cacucci?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=350&av=100013534782121&eav=AfZdkMmSMWgisB8hGqZV8FJMARSmhif2X4gOqDQN4r55076HwEXdoYY6CUu9D1-Df1w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabrizio Rizzo,,2019-05-18,,"E nonostante tutto questo sostegno e approvazione da parte del popolo italiano, non si riesce a impedire a una misera nave ONG olandese di fare come gli pare. La costituzione italiana va rivista e aggiornata in funzione della situazione internazionale attuale.",/fabrizio.rizzo.9279?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=350&av=100013534782121&eav=AfZdkMmSMWgisB8hGqZV8FJMARSmhif2X4gOqDQN4r55076HwEXdoYY6CUu9D1-Df1w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sara Battisti,,2019-05-18,,"Voi eravate li,noi casa ma col cuore con voi e col voto sempre😃",/sara.battisti.545?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=350&av=100013534782121&eav=AfZdkMmSMWgisB8hGqZV8FJMARSmhif2X4gOqDQN4r55076HwEXdoYY6CUu9D1-Df1w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Grazia Bartucca,,2019-05-18,1,Tra tutti Fighissimo lo striscione Di Zorro,/maria.grazia.1291?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=350&av=100013534782121&eav=AfZdkMmSMWgisB8hGqZV8FJMARSmhif2X4gOqDQN4r55076HwEXdoYY6CUu9D1-Df1w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carmine Coletta,,2019-05-18,,"Forza Salvino tieni duro solo tu ci stai difendendo, ridarci i volori ,religiosi e dignità. 👍forza capitano sono con te.",/profile.php?id=100008482923633&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=350&av=100013534782121&eav=AfZdkMmSMWgisB8hGqZV8FJMARSmhif2X4gOqDQN4r55076HwEXdoYY6CUu9D1-Df1w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carlo Baracca,,2019-05-18,,Due gatti ad ascoltare Salvini in piazza del duomo a Milano.,/baraccacarlo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=350&av=100013534782121&eav=AfZdkMmSMWgisB8hGqZV8FJMARSmhif2X4gOqDQN4r55076HwEXdoYY6CUu9D1-Df1w&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carlo Lacirignola,,2019-05-18,,Grande salvini,/carlo.lacirignola.12?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=480&av=100013534782121&eav=AfZ-pf4wtMb5hUIr39472Mg7nTHqJVkGRRSVsntHX7NEpPay_K0KeJq9uHfa-1rTFmA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Syl Syl,,2019-05-18,3,Siamo qui💝💝,/ccompagnoni1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=480&av=100013534782121&eav=AfZ-pf4wtMb5hUIr39472Mg7nTHqJVkGRRSVsntHX7NEpPay_K0KeJq9uHfa-1rTFmA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ally Ale,,2019-05-18,,Vai Matteoooo,/allyzemra?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=480&av=100013534782121&eav=AfZ-pf4wtMb5hUIr39472Mg7nTHqJVkGRRSVsntHX7NEpPay_K0KeJq9uHfa-1rTFmA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonina Basso,,2019-05-18,,Forza,/antonina.basso?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=480&av=100013534782121&eav=AfZ-pf4wtMb5hUIr39472Mg7nTHqJVkGRRSVsntHX7NEpPay_K0KeJq9uHfa-1rTFmA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Davide Candiani,,2019-05-18,,Matteo mettiti una giacca ...prendi freddo e poi ti ammali.,/davide.candiani.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=480&av=100013534782121&eav=AfZ-pf4wtMb5hUIr39472Mg7nTHqJVkGRRSVsntHX7NEpPay_K0KeJq9uHfa-1rTFmA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Sinibaldi,,2019-05-18,2,Monta la paura a tutti. Avanti così come un treno 💪💪💪,/giovanni.sinibaldi.58?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=480&av=100013534782121&eav=AfZ-pf4wtMb5hUIr39472Mg7nTHqJVkGRRSVsntHX7NEpPay_K0KeJq9uHfa-1rTFmA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +L'Anto Verri,,2019-05-18,,,/anto.verrini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=480&av=100013534782121&eav=AfZ-pf4wtMb5hUIr39472Mg7nTHqJVkGRRSVsntHX7NEpPay_K0KeJq9uHfa-1rTFmA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +L'Anto Verri,,2019-05-18,,,/anto.verrini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=480&av=100013534782121&eav=AfZ-pf4wtMb5hUIr39472Mg7nTHqJVkGRRSVsntHX7NEpPay_K0KeJq9uHfa-1rTFmA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mauro Belotti,,2019-05-18,1,Grande,/mauro.belotti.73?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=480&av=100013534782121&eav=AfZ-pf4wtMb5hUIr39472Mg7nTHqJVkGRRSVsntHX7NEpPay_K0KeJq9uHfa-1rTFmA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vito Manca,ROOT,2019-05-18,,Ma come si fa a votare persone indagate.. Voi non state bene con la testa.. Boo.. Le mazzate le volete voi.. E siete pure orgogliosi...voce del verbo indagare..vi devono portare a mano a mano come i bambini per capire certe cose,/vito.manca.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543779302695326&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBraZhqb1szEbkF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mauro Cavallini,Vito Manca,2019-05-18,,Vito Manca le manca la vite. Vito Manca.,/mauro.cavallini.7311?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543779302695326&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBraZhqb1szEbkF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maurizio Dorini,ROOT,2019-05-18,4,Io c'ero,/maurizio.dorini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2202855803136785&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD1wDyS3Nhuc6ha&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Serrau,Maurizio Dorini,2019-05-18,,Beatoooooo,/profile.php?id=100013239524588&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2202855803136785&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD1wDyS3Nhuc6ha&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Serrau,Maurizio Dorini,2019-05-18,,,/profile.php?id=100013239524588&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_2202855803136785&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD1wDyS3Nhuc6ha&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Elena Bossi,,2019-05-18,,,/elena.bossi.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=490&av=100013534782121&eav=AfZJ4AJIQ6eevHLLnWRXdN7QcnSiKLeyqZr8F7VYM6CDYM4XW_JbjcRVH1nmtv49YX0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Trizio Taiana,,2019-05-18,,Un grande,/andrea.taiana2?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=490&av=100013534782121&eav=AfZJ4AJIQ6eevHLLnWRXdN7QcnSiKLeyqZr8F7VYM6CDYM4XW_JbjcRVH1nmtv49YX0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianpiero Audisio,,2019-05-18,1,Bravo Matteo se un grande,/gianpiero.audisio.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=490&av=100013534782121&eav=AfZJ4AJIQ6eevHLLnWRXdN7QcnSiKLeyqZr8F7VYM6CDYM4XW_JbjcRVH1nmtv49YX0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Titti Binda,,2019-05-18,8,Molla i grillini,/profile.php?id=100006316114010&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=490&av=100013534782121&eav=AfZJ4AJIQ6eevHLLnWRXdN7QcnSiKLeyqZr8F7VYM6CDYM4XW_JbjcRVH1nmtv49YX0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Trizio Taiana,,2019-05-18,1,Grande Matteo,/andrea.taiana2?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=490&av=100013534782121&eav=AfZJ4AJIQ6eevHLLnWRXdN7QcnSiKLeyqZr8F7VYM6CDYM4XW_JbjcRVH1nmtv49YX0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Fusaro,,2019-05-18,1,Grande Salvini 👍,/giuseppe.fusaro.7315?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=490&av=100013534782121&eav=AfZJ4AJIQ6eevHLLnWRXdN7QcnSiKLeyqZr8F7VYM6CDYM4XW_JbjcRVH1nmtv49YX0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Eliana Gilardi,,2019-05-18,,Grande Capitano,/eliana.gilardi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=490&av=100013534782121&eav=AfZJ4AJIQ6eevHLLnWRXdN7QcnSiKLeyqZr8F7VYM6CDYM4XW_JbjcRVH1nmtv49YX0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loredana Grassi,,2019-05-18,,Sono con te!,/loredana.grassi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=490&av=100013534782121&eav=AfZJ4AJIQ6eevHLLnWRXdN7QcnSiKLeyqZr8F7VYM6CDYM4XW_JbjcRVH1nmtv49YX0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gilberto Santimaria,,2019-05-18,,Ti becchi la polmonite con sto freddo,/gilberto.santimaria?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=490&av=100013534782121&eav=AfZJ4AJIQ6eevHLLnWRXdN7QcnSiKLeyqZr8F7VYM6CDYM4XW_JbjcRVH1nmtv49YX0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Federica Campus,ROOT,2019-05-18,,"Ci credo che sei senza parole, nemmeno i tuoi familiari sono passati a salutare 😂😂😂😂",/federicacampus2?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543762249363698&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAY5zNFRMYa0VPw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Dayana Caruso,Federica Campus,2019-05-18,,Federica Campus lei dice?,/profile.php?id=100015022038142&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543762249363698&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAY5zNFRMYa0VPw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mauro Cavallini,Federica Campus,2019-05-18,,Federica Campus lei è quella che leggendo la Repubblica è convinta che asini volano?Forse perché è comunista?,/mauro.cavallini.7311?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543762249363698&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAY5zNFRMYa0VPw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvana Merli,,2019-05-18,2,,/silvana.merli.589?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=500&av=100013534782121&eav=AfZpb2fH-_XglLL1A-EuKlpF3sCO3AC7pwVul7gIZ4uOcv4wHmBymbE1JEpUX7FFAUU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniele Peduzzi,,2019-05-18,1,#iocero,/DanPeduzzi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=500&av=100013534782121&eav=AfZpb2fH-_XglLL1A-EuKlpF3sCO3AC7pwVul7gIZ4uOcv4wHmBymbE1JEpUX7FFAUU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuliana Orsenigo,,2019-05-18,1,Grande Matteo 💚💚💚💚💚💚,/giuliana.orsenigo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=500&av=100013534782121&eav=AfZpb2fH-_XglLL1A-EuKlpF3sCO3AC7pwVul7gIZ4uOcv4wHmBymbE1JEpUX7FFAUU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alfredo Girello,,2019-05-18,1,Vai matteo,/alfredo.girello?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=500&av=100013534782121&eav=AfZpb2fH-_XglLL1A-EuKlpF3sCO3AC7pwVul7gIZ4uOcv4wHmBymbE1JEpUX7FFAUU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lavinia Simetto,,2019-05-18,1,GRande Matteo,/dilankatia?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=500&av=100013534782121&eav=AfZpb2fH-_XglLL1A-EuKlpF3sCO3AC7pwVul7gIZ4uOcv4wHmBymbE1JEpUX7FFAUU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Andreani,,2019-05-18,,Matteo attento ai 5 stalle pugnalano alle spalle 💖,/roberta.andreani.98?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=500&av=100013534782121&eav=AfZpb2fH-_XglLL1A-EuKlpF3sCO3AC7pwVul7gIZ4uOcv4wHmBymbE1JEpUX7FFAUU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Norma Morrison,,2019-05-18,,,/norma.morrison.77?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=500&av=100013534782121&eav=AfZpb2fH-_XglLL1A-EuKlpF3sCO3AC7pwVul7gIZ4uOcv4wHmBymbE1JEpUX7FFAUU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=500&av=100013534782121&eav=AfZpb2fH-_XglLL1A-EuKlpF3sCO3AC7pwVul7gIZ4uOcv4wHmBymbE1JEpUX7FFAUU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=500&av=100013534782121&eav=AfZpb2fH-_XglLL1A-EuKlpF3sCO3AC7pwVul7gIZ4uOcv4wHmBymbE1JEpUX7FFAUU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=500&av=100013534782121&eav=AfZpb2fH-_XglLL1A-EuKlpF3sCO3AC7pwVul7gIZ4uOcv4wHmBymbE1JEpUX7FFAUU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=510&av=100013534782121&eav=AfYEHrLbGTZdCrsZKRKO_-HnGT8Y70hfdv6JIb3tHHBm3uqv6xhrOI9ViiP2-ilW5Ks&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=510&av=100013534782121&eav=AfYEHrLbGTZdCrsZKRKO_-HnGT8Y70hfdv6JIb3tHHBm3uqv6xhrOI9ViiP2-ilW5Ks&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=510&av=100013534782121&eav=AfYEHrLbGTZdCrsZKRKO_-HnGT8Y70hfdv6JIb3tHHBm3uqv6xhrOI9ViiP2-ilW5Ks&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Cecchetti,,2019-05-18,1,"Un grande trascinatore, uomo politico che ascolta la gente. Tutti coloro che dicono che fa nulla vorrei rispondere che fino ad oggi che governavano loro il.niente è stato fatto.Aspettiamo.la fine della campagna elettorale poi.......battaglia",/carla.cecchetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=510&av=100013534782121&eav=AfYEHrLbGTZdCrsZKRKO_-HnGT8Y70hfdv6JIb3tHHBm3uqv6xhrOI9ViiP2-ilW5Ks&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=510&av=100013534782121&eav=AfYEHrLbGTZdCrsZKRKO_-HnGT8Y70hfdv6JIb3tHHBm3uqv6xhrOI9ViiP2-ilW5Ks&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=510&av=100013534782121&eav=AfYEHrLbGTZdCrsZKRKO_-HnGT8Y70hfdv6JIb3tHHBm3uqv6xhrOI9ViiP2-ilW5Ks&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=510&av=100013534782121&eav=AfYEHrLbGTZdCrsZKRKO_-HnGT8Y70hfdv6JIb3tHHBm3uqv6xhrOI9ViiP2-ilW5Ks&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=510&av=100013534782121&eav=AfYEHrLbGTZdCrsZKRKO_-HnGT8Y70hfdv6JIb3tHHBm3uqv6xhrOI9ViiP2-ilW5Ks&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=510&av=100013534782121&eav=AfYEHrLbGTZdCrsZKRKO_-HnGT8Y70hfdv6JIb3tHHBm3uqv6xhrOI9ViiP2-ilW5Ks&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigi Maffini,,2019-05-18,,💚💚💚forza e coraggio!!!,/profile.php?id=100006890509175&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=510&av=100013534782121&eav=AfYEHrLbGTZdCrsZKRKO_-HnGT8Y70hfdv6JIb3tHHBm3uqv6xhrOI9ViiP2-ilW5Ks&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Manero,ROOT,2019-05-18,3,"Ci sono sostenitori della sinistra che mettevano foto della piazza vuota, si ma la piazza alle 12 non alle 15 . I solito modo disonesto ,falso di tutta la sinistra e di chi la vota.",/manero.manero.73?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265842743668855&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCzh7wPaGcUjf_W&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annita Terruli,Antonio Manero,2019-05-18,,Antonio Manero disonesti e falzi la politica e piena e nn solo a sinistra,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265842743668855&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCzh7wPaGcUjf_W&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Angela Battocchio,,2019-05-18,,,/angela.battocchio.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=520&av=100013534782121&eav=AfZswXnAr22rcV1IhcsUDsSFvjSxv_cKjksT_P0CtI3eB7wo5a_RoyYmPF0YXVXOyJQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nunzio Dipace,,2019-05-18,,Cosa aspetti a mollare i grillini.,/profile.php?id=100006581835848&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=520&av=100013534782121&eav=AfZswXnAr22rcV1IhcsUDsSFvjSxv_cKjksT_P0CtI3eB7wo5a_RoyYmPF0YXVXOyJQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Debora della Corna,,2019-05-18,,Non mollare!!! 😉,/debora.dellacorna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=520&av=100013534782121&eav=AfZswXnAr22rcV1IhcsUDsSFvjSxv_cKjksT_P0CtI3eB7wo5a_RoyYmPF0YXVXOyJQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Caporrimo,,2019-05-18,,,/jcaporrimo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=520&av=100013534782121&eav=AfZswXnAr22rcV1IhcsUDsSFvjSxv_cKjksT_P0CtI3eB7wo5a_RoyYmPF0YXVXOyJQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mario Castiglia,,2019-05-18,,,/mario.castiglia.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=520&av=100013534782121&eav=AfZswXnAr22rcV1IhcsUDsSFvjSxv_cKjksT_P0CtI3eB7wo5a_RoyYmPF0YXVXOyJQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sonia Belmonte,,2019-05-18,1,🔝🔝🔝💪💪💪❤,/sonia.belmonte.54?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=520&av=100013534782121&eav=AfZswXnAr22rcV1IhcsUDsSFvjSxv_cKjksT_P0CtI3eB7wo5a_RoyYmPF0YXVXOyJQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Gortan,,2019-05-18,1,Grazie a te Matteo,/elena.gortan.14?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=520&av=100013534782121&eav=AfZswXnAr22rcV1IhcsUDsSFvjSxv_cKjksT_P0CtI3eB7wo5a_RoyYmPF0YXVXOyJQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Denise Maria,,2019-05-18,,,/Maryaromina?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=520&av=100013534782121&eav=AfZswXnAr22rcV1IhcsUDsSFvjSxv_cKjksT_P0CtI3eB7wo5a_RoyYmPF0YXVXOyJQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luca Bonelli,,2019-05-18,1,Capitano... mio Capitano,/luca.bonelli.100?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=520&av=100013534782121&eav=AfZswXnAr22rcV1IhcsUDsSFvjSxv_cKjksT_P0CtI3eB7wo5a_RoyYmPF0YXVXOyJQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonello Timo,,2019-05-18,,Presente,/antonello.timo1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=520&av=100013534782121&eav=AfZswXnAr22rcV1IhcsUDsSFvjSxv_cKjksT_P0CtI3eB7wo5a_RoyYmPF0YXVXOyJQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria D'angelo,,2019-05-18,,Bravo grande salvini,/maria.dangelo.982?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=530&av=100013534782121&eav=AfYf0798pO3pJNs5ufMEMhZbavldIovDvV3kAqxuyU_v00bOE6XCWi10c1v9IoGIK3I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Vismara,,2019-05-18,,....e qualcuno dirà che c erano 4 gatti!!,/vismara.marco.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=530&av=100013534782121&eav=AfYf0798pO3pJNs5ufMEMhZbavldIovDvV3kAqxuyU_v00bOE6XCWi10c1v9IoGIK3I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luisa Gallo,,2019-05-18,,,/luisa.zarrelli.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=530&av=100013534782121&eav=AfYf0798pO3pJNs5ufMEMhZbavldIovDvV3kAqxuyU_v00bOE6XCWi10c1v9IoGIK3I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luisa Gallo,,2019-05-18,,,/luisa.zarrelli.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=530&av=100013534782121&eav=AfYf0798pO3pJNs5ufMEMhZbavldIovDvV3kAqxuyU_v00bOE6XCWi10c1v9IoGIK3I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rocco Nota,,2019-05-18,2,Grande Capitano,/profile.php?id=100006490336804&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=530&av=100013534782121&eav=AfYf0798pO3pJNs5ufMEMhZbavldIovDvV3kAqxuyU_v00bOE6XCWi10c1v9IoGIK3I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gharip Hassan,,2019-05-18,1,No1. Per sempre,/gharip.hassan.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=530&av=100013534782121&eav=AfYf0798pO3pJNs5ufMEMhZbavldIovDvV3kAqxuyU_v00bOE6XCWi10c1v9IoGIK3I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Gagliostro,,2019-05-18,1,Grazie a te,/giovanna.gagliostro?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=530&av=100013534782121&eav=AfYf0798pO3pJNs5ufMEMhZbavldIovDvV3kAqxuyU_v00bOE6XCWi10c1v9IoGIK3I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorenzo Tosto,,2019-05-18,1,Ma quanti siamo e bellissimo ci,/lorenzo.tosto.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=530&av=100013534782121&eav=AfYf0798pO3pJNs5ufMEMhZbavldIovDvV3kAqxuyU_v00bOE6XCWi10c1v9IoGIK3I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Clara Capanni,,2019-05-18,,"Grazie a Matteo e a tutti i Paesi intervenuti. Grazie a tutte le meravigliose persone presenti, nonostante la pioggia. Io vi ho seguito online e avevo i brividi nel vedere una manifestazione così coinvolgente. Ci conteremo il 26 e saremo tanti! ❤️",/clara.capanni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=530&av=100013534782121&eav=AfYf0798pO3pJNs5ufMEMhZbavldIovDvV3kAqxuyU_v00bOE6XCWi10c1v9IoGIK3I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mara Rossi,,2019-05-18,4,Grande capitano !!!!! Quanta genteeee❤️❤️❤️,/mara.rossi.37?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=530&av=100013534782121&eav=AfYf0798pO3pJNs5ufMEMhZbavldIovDvV3kAqxuyU_v00bOE6XCWi10c1v9IoGIK3I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Guedado De Giudici,ROOT,2019-05-18,9,proviamo ad alzare leggermente la prospettiva e togliere la modalità panoramica mattè,/guedado.degiudici.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fabio Reg,Guedado De Giudici,2019-05-18,4,Guedado De Giudici altrimenti non ci arriva .,/fabio.reg?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Guedado De Giudici,Guedado De Giudici,2019-05-18,,Ancora sta foto dal basso con la modalità panoramica?,/guedado.degiudici.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Agostino Montalbano,Guedado De Giudici,2019-05-18,2,"Guerrafondai De Giudici: Gli imbecillì come te, ai quali indicando loro la luna si limitano a vedere il dito, sono sempre esistiti. 😂😂😂",/agostino.montalbano?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Cimino,Guedado De Giudici,2019-05-18,1,"De Giudici.....le stanno postando da tutte le prospettive, pure da dentro la galleria (evidentemente non sei di Milano). Postane un' altra tu piuttosto😁 . Aspettiamo .( non di 4 ore prima però)",/antonio.sanzx?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna Persi,Guedado De Giudici,2019-05-18,1,Andrea Cimino il problema è che mentono sapendo di mentire piuttosto che dare onore all'avversario. 💚,/anna.persi.73?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimo De Carli,Guedado De Giudici,2019-05-18,1,l' unica foto che vi rimane😂😂. Mi racconando zecche...passatevela e tenetevela stretta perchè è l' unica 😂😂😂,/massimo.decarli.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Jena Meneghel,Guedado De Giudici,2019-05-18,1,Guedado De Giudici sicuramente sei pure un terrapiattista,/andrea.meneghel.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Vanna Cecchi,Guedado De Giudici,2019-05-18,1,Guedado De Giudici rosica,/vanna.borghetti.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sergio Girardi,Guedado De Giudici,2019-05-18,,Guedado De Giudici queste sono le cose che fanno capire che il malox a voi non basta,/sergio.girardi5647?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Dayana Caruso,Guedado De Giudici,2019-05-18,,"Infatti da questa foto che pubblica Guedado De Giudici si vede che continua ad arrivare gente! Certo, se la foto si scatta ore prima e' facile fargli fare la figura del pirlone.. Ma qua i pirloni sono altri perche fortunatamente la piazza era strapiena!!",/profile.php?id=100015022038142&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Monica Selli,Guedado De Giudici,2019-05-18,1,Guedado De Giudici non ce nessuno sul palco buffone.,/profile.php?id=100008403965110&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Guedado De Giudici,Guedado De Giudici,2019-05-18,,"Tutte foto dal basso, che branco di analfabeti madonnaaaa",/guedado.degiudici.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Diego Borri,Guedado De Giudici,2019-05-18,,Guedado De Giudici lo vedi che il palco è vuoto?,/diego.borri?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Monica Selli,Guedado De Giudici,2019-05-18,1,Guedado De Giudici non ce nessuno sul palco buffone.,/profile.php?id=100008403965110&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Fabrizio Cappi,Guedado De Giudici,2019-05-18,,Guedado De Giudici ma sei serio? 🤔,/fabrizio.cappi.90?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Andrea Cimino,Guedado De Giudici,2019-05-18,3,Vedrete che quella foto la faranno girare ovunque x giorni🤣🤣🤣🤣,/antonio.sanzx?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Guedado De Giudici,Guedado De Giudici,2019-05-18,,Sto ancora aspettando una foto dall'alto amici leghisti 😃😃😃😃,/guedado.degiudici.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Danilo Poggiana,Guedado De Giudici,2019-05-18,1,Guedado De Giudici ma ci sei o ci fai? Sai com'è una foto presa dal basso? La mia più alta di così ci vuole l'elicottero 😁😁😁sei ridicolo.,/profile.php?id=100004390365612&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Danilo Poggiana,Guedado De Giudici,2019-05-18,4,Questa è dal basso!!! E guarda dov'è il palco se sai prendere le misure?,/profile.php?id=100004390365612&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Cristiano Sartori,ROOT,2019-05-18,9,ANDREA CHIANINI ROSICA ROSICA ROSICA ROSICA,/cristiano.sartori.5095?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145666109821677&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAmOvNqj7aZYj8B&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marina Sironi,Cristiano Sartori,2019-05-18,,Mizzi e' proprio velenoso. Chissa' che msl di pancia che ha.😂😂😂😂,/marina.sironi.148?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145666109821677&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAmOvNqj7aZYj8B&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Filippo D'alessandro,Guedado De Giudici,2019-05-18,15,Che genio che sei!!! Mancavano due ore pirlone!!,/filippo.l.dalessandro?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Guedado De Giudici,Guedado De Giudici,2019-05-18,,Filippo D'alessandro ahahah bella questa,/guedado.degiudici.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Gennaro De Vincenzo,Guedado De Giudici,2019-05-18,3,"Che ridicolo, due ore prima.",/gennaro.devincenzo.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +William Arcadio Pozzi,Guedado De Giudici,2019-05-18,3,A palco vuoto alle 2 di pomeriggio. Ma vai a nasconderti.,/felice.dellamorte.940?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Michela Stellabotte,Guedado De Giudici,2019-05-18,1,Guedado De Giudici ma falla finita.....,/michela.stellabotte.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Andrea Cimino,Guedado De Giudici,2019-05-18,2,Riciclato foto di altri post delle 13.00. prima che arrivasse il corteo da porta Venezia??🤣🤣🤣 La piazza era stracolma,/antonio.sanzx?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Grazia Pigliapoco,Guedado De Giudici,2019-05-18,1,Guedado De Giudici foto di questa mattina...metti quella reale...,/grazia.pigliapoco.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Agostino Montalbano,Guedado De Giudici,2019-05-18,4,Guedado De Giudici foto scattata all’alba di questa mattina? 😂😂😂,/agostino.montalbano?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Danilo Poggiana,Guedado De Giudici,2019-05-18,7,Guedado De Giudici rosica è sta zitto che fai più bella figura😁😁,/profile.php?id=100004390365612&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Andrea Cimino,Guedado De Giudici,2019-05-18,2,😁,/antonio.sanzx?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Rosa Capurso,,2019-05-18,,Bravo falli schiattare d invidia💪,/rosa.capurso.399?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=540&av=100013534782121&eav=AfatbuI-I558He-ByQwVlk9iPBsCVMRoMca-IneB7bzP18GKIy9dtGatFv__F2heEPk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Walter Tavaglione,,2019-05-18,,♥️♥️👍👍💪💪,/walter.tavaglione?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=540&av=100013534782121&eav=AfatbuI-I558He-ByQwVlk9iPBsCVMRoMca-IneB7bzP18GKIy9dtGatFv__F2heEPk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rita Mirabella,,2019-05-18,,Molla i 5 stelle!,/rita.mirabella.716?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=540&av=100013534782121&eav=AfatbuI-I558He-ByQwVlk9iPBsCVMRoMca-IneB7bzP18GKIy9dtGatFv__F2heEPk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nadia Moglioni,,2019-05-18,4,Salvini SEI TUTTI NOI ✌️✌️💕💕💕💕💕💕,/nadia.moglioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=540&av=100013534782121&eav=AfatbuI-I558He-ByQwVlk9iPBsCVMRoMca-IneB7bzP18GKIy9dtGatFv__F2heEPk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mara Deservi,,2019-05-18,3,Matteo ti amiamo!!!!!💚💚💚💚💚💚💚,/mara.deservi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=540&av=100013534782121&eav=AfatbuI-I558He-ByQwVlk9iPBsCVMRoMca-IneB7bzP18GKIy9dtGatFv__F2heEPk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mimma Impelliccieri,,2019-05-18,,,/mimma.impelliccieri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=540&av=100013534782121&eav=AfatbuI-I558He-ByQwVlk9iPBsCVMRoMca-IneB7bzP18GKIy9dtGatFv__F2heEPk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giusi Fortino,,2019-05-18,,,/giusi.fortino.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=540&av=100013534782121&eav=AfatbuI-I558He-ByQwVlk9iPBsCVMRoMca-IneB7bzP18GKIy9dtGatFv__F2heEPk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Donatella Boscolo,,2019-05-18,,Prego!💚,/donatella.boscolo.50?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=540&av=100013534782121&eav=AfatbuI-I558He-ByQwVlk9iPBsCVMRoMca-IneB7bzP18GKIy9dtGatFv__F2heEPk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Renata Gajewska,,2019-05-18,,GRANDE SALVINI !!!!!,/renata.gajewska.12?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=540&av=100013534782121&eav=AfatbuI-I558He-ByQwVlk9iPBsCVMRoMca-IneB7bzP18GKIy9dtGatFv__F2heEPk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carmine Coletta,,2019-05-18,,"Forza Salvino tieni duro solo tu ci stai difendendo, ridarci i volori ,religiosi e dignità. 👍forza capitano sono con te.",/profile.php?id=100008482923633&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=360&av=100013534782121&eav=AfYFzSuKmITuUZha_MzhE9hPMrVWB8bmXqeWqYWW2_HOm-gF-PSsXzUoQ1pna4B9cZg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carlo Baracca,,2019-05-18,,Due gatti ad ascoltare Salvini in piazza del duomo a Milano.,/baraccacarlo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=360&av=100013534782121&eav=AfYFzSuKmITuUZha_MzhE9hPMrVWB8bmXqeWqYWW2_HOm-gF-PSsXzUoQ1pna4B9cZg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mina La Selva,,2019-05-18,1,Migliaia di persone! Grazie per l'emozione Capitano ❤🇮🇹�❤,/mina.laselva?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=360&av=100013534782121&eav=AfYFzSuKmITuUZha_MzhE9hPMrVWB8bmXqeWqYWW2_HOm-gF-PSsXzUoQ1pna4B9cZg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sebastiano De Gaspari,,2019-05-18,,"Mi fate schifo, europeisti della mia minchia. Siete come il PD.",/sebastiano.degaspari?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=360&av=100013534782121&eav=AfYFzSuKmITuUZha_MzhE9hPMrVWB8bmXqeWqYWW2_HOm-gF-PSsXzUoQ1pna4B9cZg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigi Graziano Di Matteo,,2019-05-18,,Matte mi sorprendi hai attuato la stessa tecnica dell'Udinese loro con i sediolini colorati tu invece con gli ombrelli 😂,/LuigiGrazianoDiMatteo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=360&av=100013534782121&eav=AfYFzSuKmITuUZha_MzhE9hPMrVWB8bmXqeWqYWW2_HOm-gF-PSsXzUoQ1pna4B9cZg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luisa Moraschinelli,,2019-05-18,1,Non c'erano dubbi... Ma è la persona non il partito!!!,/luisa.moraschinelli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=360&av=100013534782121&eav=AfYFzSuKmITuUZha_MzhE9hPMrVWB8bmXqeWqYWW2_HOm-gF-PSsXzUoQ1pna4B9cZg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Pantani,,2019-05-18,22,Grande Salvini,/cristina.pantani.79?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=360&av=100013534782121&eav=AfYFzSuKmITuUZha_MzhE9hPMrVWB8bmXqeWqYWW2_HOm-gF-PSsXzUoQ1pna4B9cZg&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucrezia Sonja Dalla Rosa,ROOT,2019-05-18,2,sbruffone e come tutti gli arroganti sbruffoni non ammetti la realtà,/lucreziasonjaDRG?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_1119017991821263&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQABBB9v5eyq6WML&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marialuisa Scarano,Lucrezia Sonja Dalla Rosa,2019-05-18,1,Rosicate nn c'è la farete mai contro di lui e un grande sia in simpatia che nel linguaggio 😂😂😂,/marialuisa.scarano.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_1119017991821263&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQABBB9v5eyq6WML&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuliana Termenini,Lucrezia Sonja Dalla Rosa,2019-05-18,,Rosichi😂😂😂😂😂,/giuliana.termenini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_1119017991821263&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQABBB9v5eyq6WML&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Guedado De Giudici,ROOT,2019-05-18,9,proviamo ad alzare leggermente la prospettiva e togliere la modalità panoramica mattè,/guedado.degiudici.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fabio Reg,Guedado De Giudici,2019-05-18,4,Guedado De Giudici altrimenti non ci arriva .,/fabio.reg?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Guedado De Giudici,Guedado De Giudici,2019-05-18,,Ancora sta foto dal basso con la modalità panoramica?,/guedado.degiudici.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Agostino Montalbano,Guedado De Giudici,2019-05-18,2,"Guerrafondai De Giudici: Gli imbecillì come te, ai quali indicando loro la luna si limitano a vedere il dito, sono sempre esistiti. 😂😂😂",/agostino.montalbano?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Cimino,Guedado De Giudici,2019-05-18,1,"De Giudici.....le stanno postando da tutte le prospettive, pure da dentro la galleria (evidentemente non sei di Milano). Postane un' altra tu piuttosto😁 . Aspettiamo .( non di 4 ore prima però)",/antonio.sanzx?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna Persi,Guedado De Giudici,2019-05-18,1,Andrea Cimino il problema è che mentono sapendo di mentire piuttosto che dare onore all'avversario. 💚,/anna.persi.73?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Massimo De Carli,Guedado De Giudici,2019-05-18,1,l' unica foto che vi rimane😂😂. Mi racconando zecche...passatevela e tenetevela stretta perchè è l' unica 😂😂😂,/massimo.decarli.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Jena Meneghel,Guedado De Giudici,2019-05-18,1,Guedado De Giudici sicuramente sei pure un terrapiattista,/andrea.meneghel.10?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Vanna Cecchi,Guedado De Giudici,2019-05-18,1,Guedado De Giudici rosica,/vanna.borghetti.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sergio Girardi,Guedado De Giudici,2019-05-18,,Guedado De Giudici queste sono le cose che fanno capire che il malox a voi non basta,/sergio.girardi5647?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Dayana Caruso,Guedado De Giudici,2019-05-18,,"Infatti da questa foto che pubblica Guedado De Giudici si vede che continua ad arrivare gente! Certo, se la foto si scatta ore prima e' facile fargli fare la figura del pirlone.. Ma qua i pirloni sono altri perche fortunatamente la piazza era strapiena!!",/profile.php?id=100015022038142&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&count=30&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBL9fFltaVlNtVS&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alessia Bergna,,2019-05-18,,Grande capitano,/alessia.bergna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=550&av=100013534782121&eav=AfYWIONTXwWy6p5gT7r3U45esz8tSy9sJvgsVDtuXCLkBVA08kWp7BY-Dp9ruMLlCpk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marisa Riccardi,,2019-05-18,9,"Oggi, dopo tanto tempo, mi sono sentita di nuovo orgogliosa di essere italiana, orgogliosa di Milano, la mia città, orgogliosa di tutti gli italiani che erano lì e di quelli che seguivano in diretta. Ho provato un'emozione che avevo dimenticato! Grazie Matteo, ci stai restituendo la nostra dignità!",/marisa.riccardi.92?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=550&av=100013534782121&eav=AfYWIONTXwWy6p5gT7r3U45esz8tSy9sJvgsVDtuXCLkBVA08kWp7BY-Dp9ruMLlCpk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Voto Anna,,2019-05-18,1,Bravo mio capitano !!!,/voto.anna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=550&av=100013534782121&eav=AfYWIONTXwWy6p5gT7r3U45esz8tSy9sJvgsVDtuXCLkBVA08kWp7BY-Dp9ruMLlCpk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giusi Bisleri,,2019-05-18,,,/giusi.bisleri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=550&av=100013534782121&eav=AfYWIONTXwWy6p5gT7r3U45esz8tSy9sJvgsVDtuXCLkBVA08kWp7BY-Dp9ruMLlCpk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudia Temporin,,2019-05-18,1,Forza Matteo 🥰🥰🥰,/profile.php?id=100004802357575&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=550&av=100013534782121&eav=AfYWIONTXwWy6p5gT7r3U45esz8tSy9sJvgsVDtuXCLkBVA08kWp7BY-Dp9ruMLlCpk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Senatore,,2019-05-18,,Grande capitano !!💚💚💚,/lucia.senatore.710?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=550&av=100013534782121&eav=AfYWIONTXwWy6p5gT7r3U45esz8tSy9sJvgsVDtuXCLkBVA08kWp7BY-Dp9ruMLlCpk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Giubileo,,2019-05-18,3,Grande grande grande Matteo siamo con te e non mollare,/profile.php?id=100010204441043&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=550&av=100013534782121&eav=AfYWIONTXwWy6p5gT7r3U45esz8tSy9sJvgsVDtuXCLkBVA08kWp7BY-Dp9ruMLlCpk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Giubileo,,2019-05-18,2,Eliminiamo i cinque stelle,/profile.php?id=100010204441043&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=550&av=100013534782121&eav=AfYWIONTXwWy6p5gT7r3U45esz8tSy9sJvgsVDtuXCLkBVA08kWp7BY-Dp9ruMLlCpk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Giberti,,2019-05-18,1,Grande Matteo!!!!!,/giberti.antonella.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=550&av=100013534782121&eav=AfYWIONTXwWy6p5gT7r3U45esz8tSy9sJvgsVDtuXCLkBVA08kWp7BY-Dp9ruMLlCpk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Selli,Guedado De Giudici,2019-05-18,1,Guedado De Giudici non ce nessuno sul palco buffone.,/profile.php?id=100008403965110&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Guedado De Giudici,Guedado De Giudici,2019-05-18,,"Tutte foto dal basso, che branco di analfabeti madonnaaaa",/guedado.degiudici.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Diego Borri,Guedado De Giudici,2019-05-18,,Guedado De Giudici lo vedi che il palco è vuoto?,/diego.borri?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Monica Selli,Guedado De Giudici,2019-05-18,1,Guedado De Giudici non ce nessuno sul palco buffone.,/profile.php?id=100008403965110&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Fabrizio Cappi,Guedado De Giudici,2019-05-18,,Guedado De Giudici ma sei serio? 🤔,/fabrizio.cappi.90?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Andrea Cimino,Guedado De Giudici,2019-05-18,3,Vedrete che quella foto la faranno girare ovunque x giorni🤣🤣🤣🤣,/antonio.sanzx?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Guedado De Giudici,Guedado De Giudici,2019-05-18,,Sto ancora aspettando una foto dall'alto amici leghisti 😃😃😃😃,/guedado.degiudici.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Danilo Poggiana,Guedado De Giudici,2019-05-18,1,Guedado De Giudici ma ci sei o ci fai? Sai com'è una foto presa dal basso? La mia più alta di così ci vuole l'elicottero 😁😁😁sei ridicolo.,/profile.php?id=100004390365612&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Danilo Poggiana,Guedado De Giudici,2019-05-18,4,Questa è dal basso!!! E guarda dov'è il palco se sai prendere le misure?,/profile.php?id=100004390365612&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=10&count=30&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQAWkEtXc--mbAjk +Renata Fabrizio AmericanJeans,,2019-05-18,,Avanti TUTTA !!!,/renatafabrizio.americanjeans?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=560&av=100013534782121&eav=AfaGqAXZJGjdeA858ObEZZjpF7k_1p1RYbbG8JyEVCV49vmeDgVIMb0H5mLrVLkJ3RQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Calabrese Alfonso,,2019-05-18,1,Mandiamo via di Maio,/alfonso.calabrese.37?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=560&av=100013534782121&eav=AfaGqAXZJGjdeA858ObEZZjpF7k_1p1RYbbG8JyEVCV49vmeDgVIMb0H5mLrVLkJ3RQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nando Salerno,,2019-05-18,,Grazie ministro vai avanti,/nando.salerno.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=560&av=100013534782121&eav=AfaGqAXZJGjdeA858ObEZZjpF7k_1p1RYbbG8JyEVCV49vmeDgVIMb0H5mLrVLkJ3RQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nora Rota,,2019-05-18,,Avanti cosí!,/nora.rota.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=560&av=100013534782121&eav=AfaGqAXZJGjdeA858ObEZZjpF7k_1p1RYbbG8JyEVCV49vmeDgVIMb0H5mLrVLkJ3RQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sabina Luzzari,,2019-05-18,,Grazie!!💚,/sabina.luzzari?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=560&av=100013534782121&eav=AfaGqAXZJGjdeA858ObEZZjpF7k_1p1RYbbG8JyEVCV49vmeDgVIMb0H5mLrVLkJ3RQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Barbara Petrolati,,2019-05-18,,💚💚💚,/barbara.petrolati.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=560&av=100013534782121&eav=AfaGqAXZJGjdeA858ObEZZjpF7k_1p1RYbbG8JyEVCV49vmeDgVIMb0H5mLrVLkJ3RQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Brumalda Brumalda,,2019-05-18,1,👍👍👍👍🔝🔝🔝,/rubele.bruna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=560&av=100013534782121&eav=AfaGqAXZJGjdeA858ObEZZjpF7k_1p1RYbbG8JyEVCV49vmeDgVIMb0H5mLrVLkJ3RQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mattia Venturi,,2019-05-18,,#baciamilano,/VentuRolla?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=560&av=100013534782121&eav=AfaGqAXZJGjdeA858ObEZZjpF7k_1p1RYbbG8JyEVCV49vmeDgVIMb0H5mLrVLkJ3RQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Negrinotti,,2019-05-18,1,Grande capitano sei unico avanti così,/emanuela.negrinotti.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=560&av=100013534782121&eav=AfaGqAXZJGjdeA858ObEZZjpF7k_1p1RYbbG8JyEVCV49vmeDgVIMb0H5mLrVLkJ3RQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabrizio Bondi,,2019-05-18,2,Sei un mito!!!!👍👏👏👏👏,/fabrizio.bondi.948?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=560&av=100013534782121&eav=AfaGqAXZJGjdeA858ObEZZjpF7k_1p1RYbbG8JyEVCV49vmeDgVIMb0H5mLrVLkJ3RQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Filippo D'alessandro,Guedado De Giudici,2019-05-18,15,Che genio che sei!!! Mancavano due ore pirlone!!,/filippo.l.dalessandro?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Guedado De Giudici,Guedado De Giudici,2019-05-18,,Filippo D'alessandro ahahah bella questa,/guedado.degiudici.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Gennaro De Vincenzo,Guedado De Giudici,2019-05-18,3,"Che ridicolo, due ore prima.",/gennaro.devincenzo.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +William Arcadio Pozzi,Guedado De Giudici,2019-05-18,3,A palco vuoto alle 2 di pomeriggio. Ma vai a nasconderti.,/felice.dellamorte.940?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Michela Stellabotte,Guedado De Giudici,2019-05-18,1,Guedado De Giudici ma falla finita.....,/michela.stellabotte.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Andrea Cimino,Guedado De Giudici,2019-05-18,2,Riciclato foto di altri post delle 13.00. prima che arrivasse il corteo da porta Venezia??🤣🤣🤣 La piazza era stracolma,/antonio.sanzx?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Grazia Pigliapoco,Guedado De Giudici,2019-05-18,1,Guedado De Giudici foto di questa mattina...metti quella reale...,/grazia.pigliapoco.3?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Agostino Montalbano,Guedado De Giudici,2019-05-18,4,Guedado De Giudici foto scattata all’alba di questa mattina? 😂😂😂,/agostino.montalbano?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Danilo Poggiana,Guedado De Giudici,2019-05-18,7,Guedado De Giudici rosica è sta zitto che fai più bella figura😁😁,/profile.php?id=100004390365612&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Andrea Cimino,Guedado De Giudici,2019-05-18,2,😁,/antonio.sanzx?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511098155&p=20&count=30&pc=3&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCrkT2ywhz_vA1Q +Marcelina Bocanegra Diaz,,2019-05-18,9,,/marcelina.bocanegradiaz?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=370&av=100013534782121&eav=AfbBrWbkT5qde-9lcQuqdUxTef1IvJHLAz4BH9KRBmvYpbFngoZdMekHzOVd0GFXa1s&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nadia Paciotti,,2019-05-18,,E poi considerando che buttava giù tanto di quell'acqua da far desistere chiunque...,/nadia.paciotti.37?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=370&av=100013534782121&eav=AfbBrWbkT5qde-9lcQuqdUxTef1IvJHLAz4BH9KRBmvYpbFngoZdMekHzOVd0GFXa1s&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franco Baldissarutti,,2019-05-18,,"Un discorso magnifico, commovente....sei un grande! E le migliaia di abbracci, baci, strette di mani!!! Mai visto nessun ministro omaggiato in quel modo!",/florio.valgioconda?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=370&av=100013534782121&eav=AfbBrWbkT5qde-9lcQuqdUxTef1IvJHLAz4BH9KRBmvYpbFngoZdMekHzOVd0GFXa1s&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elide Belingheri,,2019-05-18,,Ti ho seguita in diretta vedere tutta quella gente mi ha Emozionata.Noi popolo Onesto ti Vogliamo Bene ed anche oggi cenè stata una Grande Dimostrazione!👍👍👍✌💚💚💚,/elide.belingheri?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=370&av=100013534782121&eav=AfbBrWbkT5qde-9lcQuqdUxTef1IvJHLAz4BH9KRBmvYpbFngoZdMekHzOVd0GFXa1s&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Margherita Aliboni,,2019-05-18,1,Finalmente un ministro che ama l'Italia e gli italiani!,/profile.php?id=100008746213673&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=370&av=100013534782121&eav=AfbBrWbkT5qde-9lcQuqdUxTef1IvJHLAz4BH9KRBmvYpbFngoZdMekHzOVd0GFXa1s&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Achillea Elisabetta,,2019-05-18,,SEI IMMENSO MATTEO 💚💚💚ALLA FACCIA DI CHI STA CERCANDO DI AFFONDARTI ....TIÈÈÈÈÈ,/achillea.elisabetta?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=370&av=100013534782121&eav=AfbBrWbkT5qde-9lcQuqdUxTef1IvJHLAz4BH9KRBmvYpbFngoZdMekHzOVd0GFXa1s&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nello Aniello Esposito,,2019-05-18,,"L’inviato di RaiNews24 ha detto che il centro della piazza era piena e nei lati poca gente!! Iniziate a trovarvi un lavoro, la pacchia sta finendo! Io voglio giornalisti obiettivi e super parte",/aniello.esposito.397?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=370&av=100013534782121&eav=AfbBrWbkT5qde-9lcQuqdUxTef1IvJHLAz4BH9KRBmvYpbFngoZdMekHzOVd0GFXa1s&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Beatrice Rizzo,,2019-05-18,,"Con il grandangolo anche siamo tutti capaci, prova a riempirla davvero una pizza",/beatriceikki.rizzo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=370&av=100013534782121&eav=AfbBrWbkT5qde-9lcQuqdUxTef1IvJHLAz4BH9KRBmvYpbFngoZdMekHzOVd0GFXa1s&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelo D'Avico,,2019-05-18,8,,/angelo.davico.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=370&av=100013534782121&eav=AfbBrWbkT5qde-9lcQuqdUxTef1IvJHLAz4BH9KRBmvYpbFngoZdMekHzOVd0GFXa1s&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristiano Sartori,ROOT,2019-05-18,8,DAL VANGELO SECONDO MATTEO SALVINI IL CAPITANOOOOO,/cristiano.sartori.5095?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145668563154765&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDCw7MTyNUTA1vq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luca Ferrari,Cristiano Sartori,2019-05-18,,PD!,/profile.php?id=100024073925263&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_145668563154765&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDCw7MTyNUTA1vq&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simo Baci,,2019-05-18,,💚,/simo.baci?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=570&av=100013534782121&eav=AfYy5yoXu16PK41ibclFPExMjgmlhK9A3LXVU7KqsHRcoBdk9XTGtAvf3ITMOJXnCec&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rita Agostini,,2019-05-18,,💚💚💚💚💚💚💚🔝🔝🔝,/rita.agostini.967?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=570&av=100013534782121&eav=AfYy5yoXu16PK41ibclFPExMjgmlhK9A3LXVU7KqsHRcoBdk9XTGtAvf3ITMOJXnCec&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Fabbi,,2019-05-18,,Bravoooooo,/rosanna.fabbi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=570&av=100013534782121&eav=AfYy5yoXu16PK41ibclFPExMjgmlhK9A3LXVU7KqsHRcoBdk9XTGtAvf3ITMOJXnCec&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Annalisa Tassi,,2019-05-18,,Come,/annalisatassi.davidetrotta?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=570&av=100013534782121&eav=AfYy5yoXu16PK41ibclFPExMjgmlhK9A3LXVU7KqsHRcoBdk9XTGtAvf3ITMOJXnCec&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Celeste Wt,,2019-05-18,,Bravo Salvini complimenti,/profile.php?id=100013596676394&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=570&av=100013534782121&eav=AfYy5yoXu16PK41ibclFPExMjgmlhK9A3LXVU7KqsHRcoBdk9XTGtAvf3ITMOJXnCec&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franca Scalzi,,2019-05-18,,Siiiiiii❤️❤️❤️,/franca.scalzi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=570&av=100013534782121&eav=AfYy5yoXu16PK41ibclFPExMjgmlhK9A3LXVU7KqsHRcoBdk9XTGtAvf3ITMOJXnCec&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ida Cambrea,,2019-05-18,,👍👍👍,/ida.cambrea?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=570&av=100013534782121&eav=AfYy5yoXu16PK41ibclFPExMjgmlhK9A3LXVU7KqsHRcoBdk9XTGtAvf3ITMOJXnCec&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaele Faraco,,2019-05-18,1,,/raffaele.faraco.58?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=570&av=100013534782121&eav=AfYy5yoXu16PK41ibclFPExMjgmlhK9A3LXVU7KqsHRcoBdk9XTGtAvf3ITMOJXnCec&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Leo,,2019-05-18,,😍,/profile.php?id=100005040796208&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=570&av=100013534782121&eav=AfYy5yoXu16PK41ibclFPExMjgmlhK9A3LXVU7KqsHRcoBdk9XTGtAvf3ITMOJXnCec&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giorgio De Maria,ROOT,2019-05-18,,"Beh per essere sabato... per essere per essere Milano, mi sembravano un po’ pochini .... non è stata neanche riempita tutta la piazza...",/giorgio.demaria.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301910097364803&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAAfKcaTd8jQo6f&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sergio Girardi,Giorgio De Maria,2019-05-18,,Giorgio De Maria tu non c'eri se c'eri dormivi,/sergio.girardi5647?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301910097364803&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAAfKcaTd8jQo6f&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio De Maria,Giorgio De Maria,2019-05-18,1,Questa è una piazza piena 😂,/giorgio.demaria.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301910097364803&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAAfKcaTd8jQo6f&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio De Maria,Giorgio De Maria,2019-05-18,,Però lui c’era!!!😂😂😂,/giorgio.demaria.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301910097364803&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAAfKcaTd8jQo6f&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Flavio Maver,,2019-05-18,,Basta 5 stalle mollali sono dei tagliafacce,/flavio.maver?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=580&av=100013534782121&eav=AfZOwpnVZF9fqvHaOvC2Ddql_jci6XDeI7mT3BA-usdAgudGJ7I0623ANmFLSNp_g3M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Bossi,,2019-05-18,2,Vaiiiii grandeeeee,/stefania.bossi.37?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=580&av=100013534782121&eav=AfZOwpnVZF9fqvHaOvC2Ddql_jci6XDeI7mT3BA-usdAgudGJ7I0623ANmFLSNp_g3M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Margherita Ogier,,2019-05-18,1,Grande Capitano!,/anna.ogier.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=580&av=100013534782121&eav=AfZOwpnVZF9fqvHaOvC2Ddql_jci6XDeI7mT3BA-usdAgudGJ7I0623ANmFLSNp_g3M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Flavio Maver,,2019-05-18,2,Di ai sinistroidi di pulirsi il culo con le lenzuola,/flavio.maver?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=580&av=100013534782121&eav=AfZOwpnVZF9fqvHaOvC2Ddql_jci6XDeI7mT3BA-usdAgudGJ7I0623ANmFLSNp_g3M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sabina Luzzari,,2019-05-18,,,/sabina.luzzari?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=580&av=100013534782121&eav=AfZOwpnVZF9fqvHaOvC2Ddql_jci6XDeI7mT3BA-usdAgudGJ7I0623ANmFLSNp_g3M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Natale Spedale,,2019-05-18,2,Grande Salvini tremano tutti,/natale.spedale?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=580&av=100013534782121&eav=AfZOwpnVZF9fqvHaOvC2Ddql_jci6XDeI7mT3BA-usdAgudGJ7I0623ANmFLSNp_g3M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Stamato,,2019-05-18,,Grande,/antonio.stamato1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=580&av=100013534782121&eav=AfZOwpnVZF9fqvHaOvC2Ddql_jci6XDeI7mT3BA-usdAgudGJ7I0623ANmFLSNp_g3M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pamela Tosi,,2019-05-18,,❤️,/pandy85?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=580&av=100013534782121&eav=AfZOwpnVZF9fqvHaOvC2Ddql_jci6XDeI7mT3BA-usdAgudGJ7I0623ANmFLSNp_g3M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Federica Micalucci,,2019-05-18,6,"Ministro, anche con la pioggia, riempi sempre le piazze!",/micalucci?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=580&av=100013534782121&eav=AfZOwpnVZF9fqvHaOvC2Ddql_jci6XDeI7mT3BA-usdAgudGJ7I0623ANmFLSNp_g3M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Mugnosso,,2019-05-18,,,/stefania.mugnosso?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=580&av=100013534782121&eav=AfZOwpnVZF9fqvHaOvC2Ddql_jci6XDeI7mT3BA-usdAgudGJ7I0623ANmFLSNp_g3M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Mugnosso,,2019-05-18,,,/stefania.mugnosso?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=590&av=100013534782121&eav=AfbAGDSGzLRpEfgKTBmPsjiNILZ7p6ghavbOPGVgJ1jwK7ZDiBLNr2rMpLPGs7TmEis&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Flavio Maver,,2019-05-18,,Grandeeeee,/flavio.maver?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=590&av=100013534782121&eav=AfbAGDSGzLRpEfgKTBmPsjiNILZ7p6ghavbOPGVgJ1jwK7ZDiBLNr2rMpLPGs7TmEis&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Evola Girolama,,2019-05-18,,Forza Matteo sei grande!!!!!,/profile.php?id=100008749142393&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=590&av=100013534782121&eav=AfbAGDSGzLRpEfgKTBmPsjiNILZ7p6ghavbOPGVgJ1jwK7ZDiBLNr2rMpLPGs7TmEis&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mauro Tatasciore,,2019-05-18,,🤗,/mauro.tatasciore?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=590&av=100013534782121&eav=AfbAGDSGzLRpEfgKTBmPsjiNILZ7p6ghavbOPGVgJ1jwK7ZDiBLNr2rMpLPGs7TmEis&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Ferraro,,2019-05-18,,💚💚😽,/daniela.ferraro.39?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=590&av=100013534782121&eav=AfbAGDSGzLRpEfgKTBmPsjiNILZ7p6ghavbOPGVgJ1jwK7ZDiBLNr2rMpLPGs7TmEis&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roxane Bestetti,,2019-05-18,,GRAZIE MATTEO!!!!!!!!💚💚💚💚💚💚💚💚💚,/roxane.ferrari?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=590&av=100013534782121&eav=AfbAGDSGzLRpEfgKTBmPsjiNILZ7p6ghavbOPGVgJ1jwK7ZDiBLNr2rMpLPGs7TmEis&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Biba Vlajic,,2019-05-18,,Noooooooo...si è interrotta la diretta 😱😔😭😭😭😭😭,/biba.vlajic?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=590&av=100013534782121&eav=AfbAGDSGzLRpEfgKTBmPsjiNILZ7p6ghavbOPGVgJ1jwK7ZDiBLNr2rMpLPGs7TmEis&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alberto Simone,,2019-05-18,,Go Salvini go 🍾,/profile.php?id=100009520857136&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=590&av=100013534782121&eav=AfbAGDSGzLRpEfgKTBmPsjiNILZ7p6ghavbOPGVgJ1jwK7ZDiBLNr2rMpLPGs7TmEis&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Dionisia Ragona,,2019-05-18,,,/dionisia.ragona?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=590&av=100013534782121&eav=AfbAGDSGzLRpEfgKTBmPsjiNILZ7p6ghavbOPGVgJ1jwK7ZDiBLNr2rMpLPGs7TmEis&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Catia Rizzardi,,2019-05-18,1,Grande grande grande,/profile.php?id=100014132229245&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=590&av=100013534782121&eav=AfbAGDSGzLRpEfgKTBmPsjiNILZ7p6ghavbOPGVgJ1jwK7ZDiBLNr2rMpLPGs7TmEis&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefano Margarito,ROOT,2019-05-18,8,"Continuate nel postare foto di 5 ore prima ,fatevi gli occhi .",/stefano.margarito.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622559283155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBzSCX6NHj-kSOK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Silvia Lelli,Stefano Margarito,2019-05-18,2,Stefano Margarito ....uno spettacolo 😍,/profile.php?id=100014305147129&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622559283155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBzSCX6NHj-kSOK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giorgio De Maria,Stefano Margarito,2019-05-18,,Stefano Margarito questa è una piazza piena 😉,/giorgio.demaria.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622559283155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBzSCX6NHj-kSOK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mariella Cairoli,,2019-05-18,4,Sei forte la gente ti ama,/mariella.cairoli.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=600&av=100013534782121&eav=Afb4CLrGDhyf2uND7zMbs8nl3Q9zJUa_RTei0yPRoGsS0QLFJhzhL4f3TGEN4maTBts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sonia Yu,,2019-05-18,,,/profile.php?id=100007826436666&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=600&av=100013534782121&eav=Afb4CLrGDhyf2uND7zMbs8nl3Q9zJUa_RTei0yPRoGsS0QLFJhzhL4f3TGEN4maTBts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sonia Yu,,2019-05-18,,,/profile.php?id=100007826436666&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=600&av=100013534782121&eav=Afb4CLrGDhyf2uND7zMbs8nl3Q9zJUa_RTei0yPRoGsS0QLFJhzhL4f3TGEN4maTBts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Idri,,2019-05-18,,,/stefania.idri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=600&av=100013534782121&eav=Afb4CLrGDhyf2uND7zMbs8nl3Q9zJUa_RTei0yPRoGsS0QLFJhzhL4f3TGEN4maTBts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lella Antibelli,,2019-05-18,4,Copriti disgraziato che ti ammali!!!😂😂😂😘😘😘💚💚💚💚,/lellantibelli?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=600&av=100013534782121&eav=Afb4CLrGDhyf2uND7zMbs8nl3Q9zJUa_RTei0yPRoGsS0QLFJhzhL4f3TGEN4maTBts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cobrescu Aurelian Si Maria,,2019-05-18,,,/aurelian.cobrescu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=600&av=100013534782121&eav=Afb4CLrGDhyf2uND7zMbs8nl3Q9zJUa_RTei0yPRoGsS0QLFJhzhL4f3TGEN4maTBts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Bonaita,,2019-05-18,2,Grande e fantastico come sempre,/daniela.bonaita?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=600&av=100013534782121&eav=Afb4CLrGDhyf2uND7zMbs8nl3Q9zJUa_RTei0yPRoGsS0QLFJhzhL4f3TGEN4maTBts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bruna Paravisi,,2019-05-18,,Inimitabile ciao me,/bruna.paravisi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=600&av=100013534782121&eav=Afb4CLrGDhyf2uND7zMbs8nl3Q9zJUa_RTei0yPRoGsS0QLFJhzhL4f3TGEN4maTBts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Di Rico,,2019-05-18,,❤️,/profile.php?id=100012189938731&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=600&av=100013534782121&eav=Afb4CLrGDhyf2uND7zMbs8nl3Q9zJUa_RTei0yPRoGsS0QLFJhzhL4f3TGEN4maTBts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mario Angela Milani,,2019-05-18,1,,/profile.php?id=100013602039212&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=600&av=100013534782121&eav=Afb4CLrGDhyf2uND7zMbs8nl3Q9zJUa_RTei0yPRoGsS0QLFJhzhL4f3TGEN4maTBts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Max Chevalier,,2019-05-18,,"Ok...ministro.. Ma a cosa serve questa folla....se poi i trafficanti di esseri umani...oggi violano la legge....sfidano Lei..e le sue direttive nella totale impunità? Forse...sarebbe meglio se questa folla andasse a Lampedusa a far sentire la sua voce...contro i trafficanti di esseri umani...e contro coloro che,pur avendone poteri e strumenti, restano imbelli di fronte a questo schifo?",/max.chevalier.10?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=380&av=100013534782121&eav=AfaKuviDZvcT33mvmXLkZEvaHN674z-MH9JSBDT4nyLOIo7uUD1yqS4gzfiCnKURJoY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianluca Amenta,,2019-05-18,1,Adesso Matteo libera Milano dai balordi stranieri e dai Comunisti!,/gianluca.amenta.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=380&av=100013534782121&eav=AfaKuviDZvcT33mvmXLkZEvaHN674z-MH9JSBDT4nyLOIo7uUD1yqS4gzfiCnKURJoY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Riccardo Gasparin,,2019-05-18,1,Se ci fosse bel tempo sarebbero di più....aspettiamo le foto dei centri sociali fatte a fine manifestazione quando la piazza sarà vuota😂,/riccardo.gasparin?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=380&av=100013534782121&eav=AfaKuviDZvcT33mvmXLkZEvaHN674z-MH9JSBDT4nyLOIo7uUD1yqS4gzfiCnKURJoY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sergio Mentasti,,2019-05-18,7,,/profile.php?id=100009417086062&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=380&av=100013534782121&eav=AfaKuviDZvcT33mvmXLkZEvaHN674z-MH9JSBDT4nyLOIo7uUD1yqS4gzfiCnKURJoY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Tosi,,2019-05-18,,Le TV possono nascondere quello che vogliono ma piazza del Duomo era questa con migliaia di persone e anche tanti politici stranieri evvaiiiiii Capitano sei grande,/paola.tosi.775?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=380&av=100013534782121&eav=AfaKuviDZvcT33mvmXLkZEvaHN674z-MH9JSBDT4nyLOIo7uUD1yqS4gzfiCnKURJoY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigi Serasini,,2019-05-18,,"Stai dimostrando come si possono risolvere i problemi continua,",/profile.php?id=100009409553536&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=380&av=100013534782121&eav=AfaKuviDZvcT33mvmXLkZEvaHN674z-MH9JSBDT4nyLOIo7uUD1yqS4gzfiCnKURJoY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Calogero Purpura,,2019-05-18,,Forza Salvini e' la volta buona che incominci a pensare di togliere le sovvenzioni a questi bastardi testate giornalistiche che sono tutti schierati con i padroni di sinistra.,/calogero.purpura.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=380&av=100013534782121&eav=AfaKuviDZvcT33mvmXLkZEvaHN674z-MH9JSBDT4nyLOIo7uUD1yqS4gzfiCnKURJoY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Italo Santori,,2019-05-18,,In giro per il mondo ho conosciuto tanti politici ma in Matteo Salvini il carisma che tiene e che trasmette io credo che è l'unico rimasto in questo modo..?,/italo.santori1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=380&av=100013534782121&eav=AfaKuviDZvcT33mvmXLkZEvaHN674z-MH9JSBDT4nyLOIo7uUD1yqS4gzfiCnKURJoY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bruna Paravisi,,2019-05-18,4,Come lui nessuno mai,/bruna.paravisi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=610&av=100013534782121&eav=AfYVTXbsBOoq0Bqsiohd7YWzWMRZniYdLl3uDXWDI1oLlfnQ9VgNQsg_T2DC8xOZwqg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rocco Nota,,2019-05-18,,,/profile.php?id=100006490336804&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=610&av=100013534782121&eav=AfYVTXbsBOoq0Bqsiohd7YWzWMRZniYdLl3uDXWDI1oLlfnQ9VgNQsg_T2DC8xOZwqg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michela Bollani,,2019-05-18,1,😘,/michela.bollani?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=610&av=100013534782121&eav=AfYVTXbsBOoq0Bqsiohd7YWzWMRZniYdLl3uDXWDI1oLlfnQ9VgNQsg_T2DC8xOZwqg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nuccia Longo,,2019-05-18,1,Bravo Ministro Salvini,/nuccia.longo.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=610&av=100013534782121&eav=AfYVTXbsBOoq0Bqsiohd7YWzWMRZniYdLl3uDXWDI1oLlfnQ9VgNQsg_T2DC8xOZwqg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Dionisia Ragona,,2019-05-18,1,Sei un mito e spero con tutto il cuore che la lega vinca.....,/dionisia.ragona?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=610&av=100013534782121&eav=AfYVTXbsBOoq0Bqsiohd7YWzWMRZniYdLl3uDXWDI1oLlfnQ9VgNQsg_T2DC8xOZwqg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristiana Migliavacca,,2019-05-18,4,Rispondiamo con il voto a tutti i tromboni che ci diffamano.,/nike.azzurra?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=610&av=100013534782121&eav=AfYVTXbsBOoq0Bqsiohd7YWzWMRZniYdLl3uDXWDI1oLlfnQ9VgNQsg_T2DC8xOZwqg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Bressanelli,,2019-05-18,1,Stai attento ai grillini non sanno più come attaccarti,/franca.bressanelli.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=610&av=100013534782121&eav=AfYVTXbsBOoq0Bqsiohd7YWzWMRZniYdLl3uDXWDI1oLlfnQ9VgNQsg_T2DC8xOZwqg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,,,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=610&av=100013534782121&eav=AfYVTXbsBOoq0Bqsiohd7YWzWMRZniYdLl3uDXWDI1oLlfnQ9VgNQsg_T2DC8xOZwqg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,,,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=610&av=100013534782121&eav=AfYVTXbsBOoq0Bqsiohd7YWzWMRZniYdLl3uDXWDI1oLlfnQ9VgNQsg_T2DC8xOZwqg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,,,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=610&av=100013534782121&eav=AfYVTXbsBOoq0Bqsiohd7YWzWMRZniYdLl3uDXWDI1oLlfnQ9VgNQsg_T2DC8xOZwqg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,,,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=620&av=100013534782121&eav=Afbu8TD2T9nZnj-7EXNrfYWhBXmiJDblc4gyI1bT3XZTn-gIhCPnkUPAiWh2o0kRk9I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,,,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=620&av=100013534782121&eav=Afbu8TD2T9nZnj-7EXNrfYWhBXmiJDblc4gyI1bT3XZTn-gIhCPnkUPAiWh2o0kRk9I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,,,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=620&av=100013534782121&eav=Afbu8TD2T9nZnj-7EXNrfYWhBXmiJDblc4gyI1bT3XZTn-gIhCPnkUPAiWh2o0kRk9I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,,,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=620&av=100013534782121&eav=Afbu8TD2T9nZnj-7EXNrfYWhBXmiJDblc4gyI1bT3XZTn-gIhCPnkUPAiWh2o0kRk9I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,,,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=620&av=100013534782121&eav=Afbu8TD2T9nZnj-7EXNrfYWhBXmiJDblc4gyI1bT3XZTn-gIhCPnkUPAiWh2o0kRk9I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,1,,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=620&av=100013534782121&eav=Afbu8TD2T9nZnj-7EXNrfYWhBXmiJDblc4gyI1bT3XZTn-gIhCPnkUPAiWh2o0kRk9I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,,,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=620&av=100013534782121&eav=Afbu8TD2T9nZnj-7EXNrfYWhBXmiJDblc4gyI1bT3XZTn-gIhCPnkUPAiWh2o0kRk9I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,,,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=620&av=100013534782121&eav=Afbu8TD2T9nZnj-7EXNrfYWhBXmiJDblc4gyI1bT3XZTn-gIhCPnkUPAiWh2o0kRk9I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,,,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=620&av=100013534782121&eav=Afbu8TD2T9nZnj-7EXNrfYWhBXmiJDblc4gyI1bT3XZTn-gIhCPnkUPAiWh2o0kRk9I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Bressanelli,,2019-05-18,,Siiiiii arriva qua il tuo battito grande,/franca.bressanelli.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=620&av=100013534782121&eav=Afbu8TD2T9nZnj-7EXNrfYWhBXmiJDblc4gyI1bT3XZTn-gIhCPnkUPAiWh2o0kRk9I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandro Pecoriello,ROOT,2019-05-18,1,Con te Matteo solo con te.... C'è la faremo. Fa nulla chi ci critica. Anche Gesù fu criticato calpestato deriso umiliato e pure riuscì ad arrivare a mettere spiritualità nei cuori del popolo.. Io vedo la realtà io vedo ciò che dio vuol far vedere. Non tutti siamo razzisti o odiamo il prossimo. Ma non vuol dire essere sottomessi dai grandi della politica che di grande hanno solo fatto la povertà e la fame. Quindi salvini vai avanti combatto perché i lupi combattono in branco... E noi siamo un branco difficile da sbranare. FORZA LA LEGA FORZA SALVINI FORZA LA LEGA UNITI PER VINCERE UNITI PER LA PATRIA UNITI PER IL POPOLO. ANCHE SE LA MIA PATRIA È COLOMBIA. MA PER ADESSO MI SENTO DI TENERE E TI FARE LA PATRIA ALLA QUALE SONO CRESCIUTO CON ONORE E RISPETTO.... NON DEVO DIRE GRAZIE A NESSUNO MA IL GRAZIE LO DEVO SOLO HAI MIEI GENITORI PERAONO RINCHIUSE NEL MIO CUORE... CON QUESTO VI DICO FORZA LA LEGA.... ❤️❤️😉😉😉😉😉,/Alessandroermeio157?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622577273155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAeGUMgOD8lFTHa&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giulia Rossi,Alessandro Pecoriello,2019-05-18,,Alessandro Pecoriello Dio ti vede anche quando scrivi “c’è la faremo” e “hai miei genitori”. Buon ululato lupo!,/giulia.rossi.1804?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622577273155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAeGUMgOD8lFTHa&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rossella Bene,,2019-05-18,,"Pioveva pure. Anche se non sono venuta ti voterò, così la mia famiglia.",/rossella.decinti?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=390&av=100013534782121&eav=Afa9ucRraGPC0qjrsHBbmDbjt66ddCYCz8GcbWMTch8_BPFe1gJ9-hlNKMYxVP8flPo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Santosuosso,,2019-05-18,1,"Onore a te Ministro Salvini oggi ci hai ""legato"" il cuore. Sei una forza per quella parte d'Italia che crede nei buoni e sani principi.👏👏👏👏",/raffaella.santosuosso?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=390&av=100013534782121&eav=Afa9ucRraGPC0qjrsHBbmDbjt66ddCYCz8GcbWMTch8_BPFe1gJ9-hlNKMYxVP8flPo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Edoardo Genovese,,2019-05-18,8,,/edoardo.genovese.79?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=390&av=100013534782121&eav=Afa9ucRraGPC0qjrsHBbmDbjt66ddCYCz8GcbWMTch8_BPFe1gJ9-hlNKMYxVP8flPo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pablo Costa,,2019-05-18,,Siamo ancora qua...eh già...noi siamo ancora qua... é GIÀ...grande festa.,/pablo.costa.7374?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=390&av=100013534782121&eav=Afa9ucRraGPC0qjrsHBbmDbjt66ddCYCz8GcbWMTch8_BPFe1gJ9-hlNKMYxVP8flPo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Iole Pazzaglia,,2019-05-18,8,Grandioso Matteo 💚💚💚,/iole.pazzaglia?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=390&av=100013534782121&eav=Afa9ucRraGPC0qjrsHBbmDbjt66ddCYCz8GcbWMTch8_BPFe1gJ9-hlNKMYxVP8flPo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Maria Arici,,2019-05-18,8,La gente ti ama perché sei una brava persona grande Matteo,/annamaria.arici.31?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=390&av=100013534782121&eav=Afa9ucRraGPC0qjrsHBbmDbjt66ddCYCz8GcbWMTch8_BPFe1gJ9-hlNKMYxVP8flPo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Terry Repossi,,2019-05-18,16,Che spettacolo,/profile.php?id=100009846614128&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=390&av=100013534782121&eav=Afa9ucRraGPC0qjrsHBbmDbjt66ddCYCz8GcbWMTch8_BPFe1gJ9-hlNKMYxVP8flPo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maryla Mizerski,,2019-05-18,6,Spettacolo commovente !!!,/maryla.mizerski?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=390&av=100013534782121&eav=Afa9ucRraGPC0qjrsHBbmDbjt66ddCYCz8GcbWMTch8_BPFe1gJ9-hlNKMYxVP8flPo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sabina Luzzari,,2019-05-18,6,,/sabina.luzzari?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=390&av=100013534782121&eav=Afa9ucRraGPC0qjrsHBbmDbjt66ddCYCz8GcbWMTch8_BPFe1gJ9-hlNKMYxVP8flPo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Margot Panco,ROOT,2019-05-18,4,In a questi commenti ci sono COMUNISTI infiltrati. Bravo SALVINI unico che difende il popolo,/margot.panco.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_378452089434495&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAw4ISm4BO7D1SF&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Margot Panco,2019-05-18,,detto dagli alleati dei fascisti francesi,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_378452089434495&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQAw4ISm4BO7D1SF&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Francesca Bressanelli,,2019-05-18,1,Vai capitano sei grande 🙌,/franca.bressanelli.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=630&av=100013534782121&eav=AfZ4OmG9XKteo59OO6VlioB7x6dV7ydlTjkVULYGjexaj6rVEflane5QAex6pSmfkOE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bianca Gotti,,2019-05-18,,Bravo bravo,/bianca.gotti.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=630&av=100013534782121&eav=AfZ4OmG9XKteo59OO6VlioB7x6dV7ydlTjkVULYGjexaj6rVEflane5QAex6pSmfkOE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Idri,,2019-05-18,3,Non siamo presenti ma. Ci siamoooooooooooo anke qui,/stefania.idri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=630&av=100013534782121&eav=AfZ4OmG9XKteo59OO6VlioB7x6dV7ydlTjkVULYGjexaj6rVEflane5QAex6pSmfkOE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Idri,,2019-05-18,,Grande capitano,/stefania.idri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=630&av=100013534782121&eav=AfZ4OmG9XKteo59OO6VlioB7x6dV7ydlTjkVULYGjexaj6rVEflane5QAex6pSmfkOE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loreta Prenz,,2019-05-18,4,"Salvini è instancabile, ancora in mezzo alla gente !",/loreta.prenz?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=630&av=100013534782121&eav=AfZ4OmG9XKteo59OO6VlioB7x6dV7ydlTjkVULYGjexaj6rVEflane5QAex6pSmfkOE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cosimo DI Fonzo,,2019-05-18,4,Per il Futuro dei Figli Nipoti dell Italia e dell Europa il 26 votero Lega e Matteo Salvini.,/mimmo.difonzo.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=630&av=100013534782121&eav=AfZ4OmG9XKteo59OO6VlioB7x6dV7ydlTjkVULYGjexaj6rVEflane5QAex6pSmfkOE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Andreis,,2019-05-18,4,Sei amato da noi ti vogliamo bene sei unico nn cambiare mai Matteo,/profile.php?id=100004969397043&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=630&av=100013534782121&eav=AfZ4OmG9XKteo59OO6VlioB7x6dV7ydlTjkVULYGjexaj6rVEflane5QAex6pSmfkOE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carolina Pantani,,2019-05-18,4,Oggi hai scritto un pezzo di storia d'Italia. Enorme!,/carolina.pantani.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=630&av=100013534782121&eav=AfZ4OmG9XKteo59OO6VlioB7x6dV7ydlTjkVULYGjexaj6rVEflane5QAex6pSmfkOE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ele Eleonora,,2019-05-18,,"Per Repubblica ( e Giggino ) in piazza c'era l'ultradestra,. In realtà migliaia di persone di buon senso. #SalviniNonMollare 🔝🇮🇹🇮🇹🇮🇹",/elena.ele.773?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=630&av=100013534782121&eav=AfZ4OmG9XKteo59OO6VlioB7x6dV7ydlTjkVULYGjexaj6rVEflane5QAex6pSmfkOE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marina Lazzini,ROOT,2019-05-18,6,,/marina.lazzini.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622508708155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB7-7rBbb2xwFaD&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Simone Galimi,Marina Lazzini,2019-05-18,,Marina Lazzini Avrei usato il colore nero allora.,/SubzeroProGamer?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622508708155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB7-7rBbb2xwFaD&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marina Lazzini,Marina Lazzini,2019-05-18,,Simone Galimi chi ti caga🤫,/marina.lazzini.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622508708155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB7-7rBbb2xwFaD&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Bright Mensah,,2019-05-18,2,One love 💗,/bright.mensah.1690671?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=640&av=100013534782121&eav=AfatA1hZiD_z-F-DvTor797-v5zlyrvC0LVh5P0VPcJmzEBFzSGXGYj-aN-kcddPivM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Rossi,,2019-05-18,,,/profile.php?id=100010777653553&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=640&av=100013534782121&eav=AfatA1hZiD_z-F-DvTor797-v5zlyrvC0LVh5P0VPcJmzEBFzSGXGYj-aN-kcddPivM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Saraceno,,2019-05-18,,Il bibitaro non c’è ?abbiamo sete di te salvini 💪🇮🇹🇮🇹🇮🇹🇮🇹,/francesca.saraceno.96?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=640&av=100013534782121&eav=AfatA1hZiD_z-F-DvTor797-v5zlyrvC0LVh5P0VPcJmzEBFzSGXGYj-aN-kcddPivM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carolina Scigliano,,2019-05-18,1,Il ministro del popolo,/carolina.scigliano1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=640&av=100013534782121&eav=AfatA1hZiD_z-F-DvTor797-v5zlyrvC0LVh5P0VPcJmzEBFzSGXGYj-aN-kcddPivM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=640&av=100013534782121&eav=AfatA1hZiD_z-F-DvTor797-v5zlyrvC0LVh5P0VPcJmzEBFzSGXGYj-aN-kcddPivM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=640&av=100013534782121&eav=AfatA1hZiD_z-F-DvTor797-v5zlyrvC0LVh5P0VPcJmzEBFzSGXGYj-aN-kcddPivM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=640&av=100013534782121&eav=AfatA1hZiD_z-F-DvTor797-v5zlyrvC0LVh5P0VPcJmzEBFzSGXGYj-aN-kcddPivM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=640&av=100013534782121&eav=AfatA1hZiD_z-F-DvTor797-v5zlyrvC0LVh5P0VPcJmzEBFzSGXGYj-aN-kcddPivM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=640&av=100013534782121&eav=AfatA1hZiD_z-F-DvTor797-v5zlyrvC0LVh5P0VPcJmzEBFzSGXGYj-aN-kcddPivM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Mazzola,,2019-05-18,3,Forza ❤️,/giovanna.mazzola.3517?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=640&av=100013534782121&eav=AfatA1hZiD_z-F-DvTor797-v5zlyrvC0LVh5P0VPcJmzEBFzSGXGYj-aN-kcddPivM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Giuca,,2019-05-18,,Milano bellissima città d'arte e di moda.,/raffaella.giuca?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=650&av=100013534782121&eav=AfZQnuykDaODMwqJaGq1a9lyRSphOorY7nrs2U4qs6tlZpXxDrV_-5_YF-3tOwyLEqQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Saraceno,,2019-05-18,,Siete pronti x il 26 ? 💪 Salvini,/francesca.saraceno.96?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=650&av=100013534782121&eav=AfZQnuykDaODMwqJaGq1a9lyRSphOorY7nrs2U4qs6tlZpXxDrV_-5_YF-3tOwyLEqQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Saraceno,,2019-05-18,1,Si sente il ❤️matto di Salvini 💪🇮🇹,/francesca.saraceno.96?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=650&av=100013534782121&eav=AfZQnuykDaODMwqJaGq1a9lyRSphOorY7nrs2U4qs6tlZpXxDrV_-5_YF-3tOwyLEqQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudia Oneda,,2019-05-18,3,"Matteo sei grande, sei entrato nel cuore della gente e credo che sia la cosa più difficile; tieni duro, so che è dura quando sei lì e vorresti fare tante cose ma per mancanza di percentuali non ce la fai! Sarebbe bello avere il 51% un sogno... tu cmq tieni duro né 😘",/claudia.oneda?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=650&av=100013534782121&eav=AfZQnuykDaODMwqJaGq1a9lyRSphOorY7nrs2U4qs6tlZpXxDrV_-5_YF-3tOwyLEqQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marilena Fratus,,2019-05-18,,,/marilena.fratus.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=650&av=100013534782121&eav=AfZQnuykDaODMwqJaGq1a9lyRSphOorY7nrs2U4qs6tlZpXxDrV_-5_YF-3tOwyLEqQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Brunella Talotta,,2019-05-18,,Il Popolo ti ama❤️,/brunella.talotta.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=650&av=100013534782121&eav=AfZQnuykDaODMwqJaGq1a9lyRSphOorY7nrs2U4qs6tlZpXxDrV_-5_YF-3tOwyLEqQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,3,Mamma mia aaaaa come sto.. Troppo oooooo grande eeeee,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=650&av=100013534782121&eav=AfZQnuykDaODMwqJaGq1a9lyRSphOorY7nrs2U4qs6tlZpXxDrV_-5_YF-3tOwyLEqQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Vollaro,,2019-05-18,2,"Guarda quanti siamo , tutti al tuo fianco! Noi con te e tu con noi",/daniela.vollaro?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=650&av=100013534782121&eav=AfZQnuykDaODMwqJaGq1a9lyRSphOorY7nrs2U4qs6tlZpXxDrV_-5_YF-3tOwyLEqQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Franzone,,2019-05-18,1,Milano ringrazia te! Grande Salvini!!! ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️,/monica.franzone.96?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=650&av=100013534782121&eav=AfZQnuykDaODMwqJaGq1a9lyRSphOorY7nrs2U4qs6tlZpXxDrV_-5_YF-3tOwyLEqQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gina Tassone,,2019-05-18,5,Sei unico 💚💚🙏,/gina.tassone?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=650&av=100013534782121&eav=AfZQnuykDaODMwqJaGq1a9lyRSphOorY7nrs2U4qs6tlZpXxDrV_-5_YF-3tOwyLEqQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristiano Caputo,ROOT,2019-05-18,,"pure questi sono entrati, se domenica c'e ancora questo governo, i nostri dieci voti passano da salvini alla meloni",/cristiano.caputo.526?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523308155&count=11&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAG5GAvV9wpL5ck&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cristiano Caputo,Cristiano Caputo,2019-05-18,1,"apposta, è inutile governare con chi ti fa i dispetti",/cristiano.caputo.526?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523308155&count=11&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAG5GAvV9wpL5ck&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Mezzogori,Cristiano Caputo,2019-05-18,1,Cristiano Caputo ma perché? Sei un voltagabbana?,/maria.mezzogori.75?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523308155&count=11&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAG5GAvV9wpL5ck&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cristiano Caputo,Cristiano Caputo,2019-05-18,,"se si governa ancora con i grillini, si diventa voltagabbana..in due settimane e gia il terzo sbarco , senza che loro alzano un dito.....",/cristiano.caputo.526?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523308155&count=11&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAG5GAvV9wpL5ck&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Pellegrino,Cristiano Caputo,2019-05-18,1,Cristiano Caputo riprenditi! !!!!!,/maria.pellegrino.9231?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523308155&count=11&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAG5GAvV9wpL5ck&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cristiano Caputo,Cristiano Caputo,2019-05-18,1,"siate realisti, i grillini stanno facendo una politica filo immigrazione per prendersi voti a sinistra, conte, lui stesso in un intervista ha detto di essere sempre stato di sinistra, è l'entourage di fico, sta preparando il movimento a quel futuro a sinistra ..cosi facendo li stiamo solo aiutando è dopo essere stati leali nel contratto,loro non lo sono nel contrasto all'immigrazione clandestina, la capitaneria di porta ha appena autorizzato la ong ad ancorasi in rada a lampedusa",/cristiano.caputo.526?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523308155&count=11&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAG5GAvV9wpL5ck&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sonia Martignago,Cristiano Caputo,2019-05-18,2,Mi spiace ma se voti Meloni(Che mi piace parecchio sia chiaro)butti via i voti;solo alleati con la lega valgono qualcosa..poi non ti lamentare se tornano gli altri..,/profile.php?id=100005142077399&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523308155&count=11&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAG5GAvV9wpL5ck&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Daniela Sonaglia,Cristiano Caputo,2019-05-18,,Cristiano Caputo visto? Lo sapevo qui qualcuno fa il doppio Gioco e non è certo Salvini,/daniela.sonaglia.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523308155&count=11&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAG5GAvV9wpL5ck&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Cristiano Caputo,Cristiano Caputo,2019-05-18,,"gentaccia questi grillini, l'antipolitica in persona, danno il reddito di dignità e poi ti ricattano in ogni modo, primi si abbandonao al loro destino come loro hanno fatto per taranto,per lecce per la tav, ingannando tante persone , perchè loro questo fanno ingannano le persone nella vita cosi come nella poltica",/cristiano.caputo.526?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523308155&count=11&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAG5GAvV9wpL5ck&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mariangela Costanzo,,2019-05-18,3,Bellissimo spettacolo!!!!! Grande Matteo!!!!!,/mariangela.costanzo.925?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=660&av=100013534782121&eav=AfYG7Y7vWRr3CG_F60gmILvcmMbZNF3oT1J2-IdKdbLI2GOK2Yk6Vf641e8chFYXsg4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Debora Comensoli,,2019-05-18,4,Sei un grande!! Continua così...avanti tutta capitano 💪,/debora.comensoli?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=660&av=100013534782121&eav=AfYG7Y7vWRr3CG_F60gmILvcmMbZNF3oT1J2-IdKdbLI2GOK2Yk6Vf641e8chFYXsg4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lauretta Coringrato,,2019-05-18,4,Viva Salvini viva la Lega 👏 👏👏,/lauretta.coringrato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=660&av=100013534782121&eav=AfYG7Y7vWRr3CG_F60gmILvcmMbZNF3oT1J2-IdKdbLI2GOK2Yk6Vf641e8chFYXsg4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Felo Mina,,2019-05-18,3,Forza ministro Salvini avanti così siamo con lei,/felo.mina.735?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=660&av=100013534782121&eav=AfYG7Y7vWRr3CG_F60gmILvcmMbZNF3oT1J2-IdKdbLI2GOK2Yk6Vf641e8chFYXsg4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alfione Lentini,,2019-05-18,3,Sentire quello che dice la gente e fantastico...!! Quello che vuole la Gente e questo...!!,/alfionee?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=660&av=100013534782121&eav=AfYG7Y7vWRr3CG_F60gmILvcmMbZNF3oT1J2-IdKdbLI2GOK2Yk6Vf641e8chFYXsg4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Massimiliano Romano,,2019-05-18,,,/massimiliano.romano.3998?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=660&av=100013534782121&eav=AfYG7Y7vWRr3CG_F60gmILvcmMbZNF3oT1J2-IdKdbLI2GOK2Yk6Vf641e8chFYXsg4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Russo,,2019-05-18,,Milano dei ricchi,/profile.php?id=100021501744053&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=660&av=100013534782121&eav=AfYG7Y7vWRr3CG_F60gmILvcmMbZNF3oT1J2-IdKdbLI2GOK2Yk6Vf641e8chFYXsg4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luisa Colombo,,2019-05-18,1,matteooooooooooooooooo ciaoooooooooooooooooooooooooun abbraccione,/luisa.colombo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=660&av=100013534782121&eav=AfYG7Y7vWRr3CG_F60gmILvcmMbZNF3oT1J2-IdKdbLI2GOK2Yk6Vf641e8chFYXsg4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Assunta Guaini,,2019-05-18,3,ZINGARETTI SCORDATELA UNA PIAZZA COSI ..X SEMPRE LEGA,/assunta.guaini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=660&av=100013534782121&eav=AfYG7Y7vWRr3CG_F60gmILvcmMbZNF3oT1J2-IdKdbLI2GOK2Yk6Vf641e8chFYXsg4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Annamaria Corradini,,2019-05-18,3,Matteo Salvino sei straordinario è unico 💚👍👍👍,/annamaria.corradini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=660&av=100013534782121&eav=AfYG7Y7vWRr3CG_F60gmILvcmMbZNF3oT1J2-IdKdbLI2GOK2Yk6Vf641e8chFYXsg4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Sonaglia,Cristiano Caputo,2019-05-18,2,Cristiano Caputo ma più che dare l'ordine dei porti chiusi che vuoi che faccia? Ha tutti contro anche i suoi alleati di governo compresa la Trenta e la marina militare,/daniela.sonaglia.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622523308155&p=10&count=11&pc=2&pgdir=1&ft_ent_identifier=10156622506373155&gfid=AQCODUp3Fs1Egtfl +Fiorenza Bellomi,,2019-05-18,7,"Grande, grande immenso capitano.",/profile.php?id=100008379767407&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=400&av=100013534782121&eav=AfbG17ZuJ2oT1txPL-VvdtmvDcdq_mh3SwNJFJlpWjdYvmM9VrgT0FKVdxBuv2-KN70&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pietro Grassi,,2019-05-18,7,Altro che le riunioni di condominio del PD 😂,/profile.php?id=100013199254738&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=400&av=100013534782121&eav=AfbG17ZuJ2oT1txPL-VvdtmvDcdq_mh3SwNJFJlpWjdYvmM9VrgT0FKVdxBuv2-KN70&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Dimitris Gkountis,,2019-05-18,6,VIVA SALVINI!!! CHE DIO TI BENEDICA!!!!,/dimitris.gkountis.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=400&av=100013534782121&eav=AfbG17ZuJ2oT1txPL-VvdtmvDcdq_mh3SwNJFJlpWjdYvmM9VrgT0FKVdxBuv2-KN70&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Leo Delli Carri,,2019-05-18,7,Forza LEGA Salvini ❤❤,/leonardo.dellicarri.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=400&av=100013534782121&eav=AfbG17ZuJ2oT1txPL-VvdtmvDcdq_mh3SwNJFJlpWjdYvmM9VrgT0FKVdxBuv2-KN70&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Martadue Frasca,,2019-05-18,6,Seguita su diretta streaming. Ne valeva la pena!,/martadue.frasca?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=400&av=100013534782121&eav=AfbG17ZuJ2oT1txPL-VvdtmvDcdq_mh3SwNJFJlpWjdYvmM9VrgT0FKVdxBuv2-KN70&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sergio Mentasti,,2019-05-18,5,,/profile.php?id=100009417086062&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=400&av=100013534782121&eav=AfbG17ZuJ2oT1txPL-VvdtmvDcdq_mh3SwNJFJlpWjdYvmM9VrgT0FKVdxBuv2-KN70&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Salvatore Chiarenza,,2019-05-18,,Stasera il giornale la repubblica che ha cambiato faccia e non la pelle scriverà che i balconi in piazza duomo a Milano erano tapezzati di striscioni contro Salvini ( mettetevi una maschera),/salvatore.chiarenza.900?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=400&av=100013534782121&eav=AfbG17ZuJ2oT1txPL-VvdtmvDcdq_mh3SwNJFJlpWjdYvmM9VrgT0FKVdxBuv2-KN70&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorenzo Terzano,,2019-05-18,13,senza paura fra la sua gente,/lorenzo.terzano.56?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=400&av=100013534782121&eav=AfbG17ZuJ2oT1txPL-VvdtmvDcdq_mh3SwNJFJlpWjdYvmM9VrgT0FKVdxBuv2-KN70&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Chianini,ROOT,2019-05-18,3,,/andrea.chianini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438420453385657&count=7&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDUB6crdVoHV4HZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Delia Maria Tarazona,Andrea Chianini,2019-05-18,,ANDREA CHIANINI A VOI PIDIOTI LE BRUCIA IL CCCCCCCC🤮🤮🤮🤮🤮,/deliamaria.tarazona?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438420453385657&count=7&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDUB6crdVoHV4HZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Manlio Cerutti,Andrea Chianini,2019-05-18,,Imbecille,/manlio.cerutti?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438420453385657&count=7&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDUB6crdVoHV4HZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Chianini,Andrea Chianini,2019-05-18,,Delia Maria Tarazona vai in culo coione,/andrea.chianini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438420453385657&count=7&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDUB6crdVoHV4HZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Chianini,Andrea Chianini,2019-05-18,,,/andrea.chianini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438420453385657&count=7&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDUB6crdVoHV4HZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Chianini,Andrea Chianini,2019-05-18,,,/andrea.chianini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438420453385657&count=7&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDUB6crdVoHV4HZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Dani Lup,Andrea Chianini,2019-05-18,,"Chianini, sei morto ma non lo sai...🖕🖕🖕🖕🖕🖕",/dan.lup.142?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438420453385657&count=7&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDUB6crdVoHV4HZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Chianini,Andrea Chianini,2019-05-18,,Coione stai muto puzzi di merda💩💩💩,/andrea.chianini?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_438420453385657&count=7&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDUB6crdVoHV4HZ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Matilde Lettieri,,2019-05-18,3,Facci godere,/matilde.lettieri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=670&av=100013534782121&eav=AfZnqRcuCnV6_IFsrGgJ6hSnO_B_8cJrFte70oWHLElHvFCN-iVKIAHc_8fu1p3eSqs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Manuela Cerqua,,2019-05-18,1,"Bella gente , grazie Milano",/profile.php?id=100005185606033&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=670&av=100013534782121&eav=AfZnqRcuCnV6_IFsrGgJ6hSnO_B_8cJrFte70oWHLElHvFCN-iVKIAHc_8fu1p3eSqs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristiano Sartori,,2019-05-18,,,/cristiano.sartori.5095?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=670&av=100013534782121&eav=AfZnqRcuCnV6_IFsrGgJ6hSnO_B_8cJrFte70oWHLElHvFCN-iVKIAHc_8fu1p3eSqs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristiano Sartori,,2019-05-18,,,/cristiano.sartori.5095?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=670&av=100013534782121&eav=AfZnqRcuCnV6_IFsrGgJ6hSnO_B_8cJrFte70oWHLElHvFCN-iVKIAHc_8fu1p3eSqs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ottavio Natati,,2019-05-18,2,CHISSA' IL PANINARO SAN FROTTOLA COSA DIRA',/ottavio.natati.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=670&av=100013534782121&eav=AfZnqRcuCnV6_IFsrGgJ6hSnO_B_8cJrFte70oWHLElHvFCN-iVKIAHc_8fu1p3eSqs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Giacobbi,,2019-05-18,2,,/profile.php?id=100008391255279&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=670&av=100013534782121&eav=AfZnqRcuCnV6_IFsrGgJ6hSnO_B_8cJrFte70oWHLElHvFCN-iVKIAHc_8fu1p3eSqs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Forte Stefano,,2019-05-18,1,,/forte.stefano.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=670&av=100013534782121&eav=AfZnqRcuCnV6_IFsrGgJ6hSnO_B_8cJrFte70oWHLElHvFCN-iVKIAHc_8fu1p3eSqs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Guido Botteri,,2019-05-18,3,Grande Salvini !,/guido.botteri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=670&av=100013534782121&eav=AfZnqRcuCnV6_IFsrGgJ6hSnO_B_8cJrFte70oWHLElHvFCN-iVKIAHc_8fu1p3eSqs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rashan Gamlath,,2019-05-18,,Please protect italy,/rashan.gamlath?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=670&av=100013534782121&eav=AfZnqRcuCnV6_IFsrGgJ6hSnO_B_8cJrFte70oWHLElHvFCN-iVKIAHc_8fu1p3eSqs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franco Galisai,ROOT,2019-05-18,6,Alla faccia dei rosiconi 😂😂😂🎉🎉🎉,/franco.gallisai?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265845743668555&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBA5cGnwHf-ziTq&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sandra Piperno,Franco Galisai,2019-05-18,1,Franco Galisai rubo 👍👍👍,/profile.php?id=100010598678767&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265845743668555&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBA5cGnwHf-ziTq&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Franco Galisai,Franco Galisai,2019-05-18,,Sandra Piperno fai con comodo lo messa apposta per i ridicoli rosiconi che hanno pubblicato le foto dalle 9 del mattino 😂😂😂,/franco.gallisai?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265845743668555&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBA5cGnwHf-ziTq&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mariarita Vatteroni,,2019-05-18,6,,/mariarita.vatteroni?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=410&av=100013534782121&eav=AfbdQRfVr1a9obvROxSSoIA9C5dvLacYjCp-DgpKc5btF-Ypqzo-n0ejvYYW_28fI-0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gio Magro,,2019-05-18,5,Questo video è fantastico,/profile.php?id=100008937103824&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=410&av=100013534782121&eav=AfbdQRfVr1a9obvROxSSoIA9C5dvLacYjCp-DgpKc5btF-Ypqzo-n0ejvYYW_28fI-0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesco Coiro,,2019-05-18,5,È piove a dirotto! Il 26 si cambia.,/francesco.coiro.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=410&av=100013534782121&eav=AfbdQRfVr1a9obvROxSSoIA9C5dvLacYjCp-DgpKc5btF-Ypqzo-n0ejvYYW_28fI-0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michela Omar Lonardi,,2019-05-18,5,,/vecchiosole.asparetto?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=410&av=100013534782121&eav=AfbdQRfVr1a9obvROxSSoIA9C5dvLacYjCp-DgpKc5btF-Ypqzo-n0ejvYYW_28fI-0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandro Di Primio,,2019-05-18,5,Grande Capitano. 👍,/alessandro.diprimio?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=410&av=100013534782121&eav=AfbdQRfVr1a9obvROxSSoIA9C5dvLacYjCp-DgpKc5btF-Ypqzo-n0ejvYYW_28fI-0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Cori,,2019-05-18,5,Sei un grande Siamo con te!!!!,/carla.cori.96?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=410&av=100013534782121&eav=AfbdQRfVr1a9obvROxSSoIA9C5dvLacYjCp-DgpKc5btF-Ypqzo-n0ejvYYW_28fI-0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Agnese Ciocci,,2019-05-18,4,Grande il mio capitano💙💙💙,/agnese.ciocci?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=410&av=100013534782121&eav=AfbdQRfVr1a9obvROxSSoIA9C5dvLacYjCp-DgpKc5btF-Ypqzo-n0ejvYYW_28fI-0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvia Lelli,,2019-05-18,4,Te la meriti tutta....vai avanti Salvini 👏👏👏👏😉,/profile.php?id=100014305147129&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=410&av=100013534782121&eav=AfbdQRfVr1a9obvROxSSoIA9C5dvLacYjCp-DgpKc5btF-Ypqzo-n0ejvYYW_28fI-0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gio Magro,,2019-05-18,4,Grande capitano,/profile.php?id=100008937103824&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=410&av=100013534782121&eav=AfbdQRfVr1a9obvROxSSoIA9C5dvLacYjCp-DgpKc5btF-Ypqzo-n0ejvYYW_28fI-0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alanera Wings,ROOT,2019-05-18,2,Sempre con lei signor ministro 💙💙💙💙,/alanera.wing.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425862418245629&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDJfEFLRWgn9F2i&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giustina Cavazzana,Alanera Wings,2019-05-18,,Alanera Wings Io c'ero! 💚 Ala è stato stupendo,/profile.php?id=100014545720203&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425862418245629&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDJfEFLRWgn9F2i&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alanera Wings,Alanera Wings,2019-05-18,,Giustina Cavazzana......ti credo Giustina.....ho visto era pieno.....,/alanera.wing.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_425862418245629&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQDJfEFLRWgn9F2i&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosalba Colleoni,,2019-05-18,,Vai Matteo sei tutti noi,/rosarossa.delniagara?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=680&av=100013534782121&eav=AfaveNDEkKH-vdpW-9F35vNjCQhRYmI5r-d6ntCCiJOgRotAJOlDMmBw84xV-skpa5g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,1,Nemmeno la pioggia ti ferma bravoooooi non mollare mai,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=680&av=100013534782121&eav=AfaveNDEkKH-vdpW-9F35vNjCQhRYmI5r-d6ntCCiJOgRotAJOlDMmBw84xV-skpa5g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michele Chicco,,2019-05-18,2,"giornata piovosa Capitano,nonostante tutto è una giornata splendida",/michele.chicco.509?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=680&av=100013534782121&eav=AfaveNDEkKH-vdpW-9F35vNjCQhRYmI5r-d6ntCCiJOgRotAJOlDMmBw84xV-skpa5g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,2,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=680&av=100013534782121&eav=AfaveNDEkKH-vdpW-9F35vNjCQhRYmI5r-d6ntCCiJOgRotAJOlDMmBw84xV-skpa5g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristiano Sartori,,2019-05-18,,,/cristiano.sartori.5095?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=680&av=100013534782121&eav=AfaveNDEkKH-vdpW-9F35vNjCQhRYmI5r-d6ntCCiJOgRotAJOlDMmBw84xV-skpa5g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristiano Sartori,,2019-05-18,,,/cristiano.sartori.5095?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=680&av=100013534782121&eav=AfaveNDEkKH-vdpW-9F35vNjCQhRYmI5r-d6ntCCiJOgRotAJOlDMmBw84xV-skpa5g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raùl De La Rosa,,2019-05-18,2,Amiche e Amici 💪🇮🇹🇪🇺🌏🌎🌍 GRAZIEEEEEEMILAMOGRAZIEEEEEEE.!!! #BuonsensoUNITI 👉❤🧡💛💚💙,/faccialive.it?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=680&av=100013534782121&eav=AfaveNDEkKH-vdpW-9F35vNjCQhRYmI5r-d6ntCCiJOgRotAJOlDMmBw84xV-skpa5g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carolina Pantani,,2019-05-18,2,Amatissimo ministro della speranza e del sorriso! Grande!,/carolina.pantani.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=680&av=100013534782121&eav=AfaveNDEkKH-vdpW-9F35vNjCQhRYmI5r-d6ntCCiJOgRotAJOlDMmBw84xV-skpa5g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Selvaggio,,2019-05-18,3,MINISTRO LIBERACI DAL MALE 🇮🇹❤,/roberta.selvaggio.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=680&av=100013534782121&eav=AfaveNDEkKH-vdpW-9F35vNjCQhRYmI5r-d6ntCCiJOgRotAJOlDMmBw84xV-skpa5g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesco Casugnu,ROOT,2019-05-18,4,Pochini ma visto che pioveva ci può stare,/fpotestio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517578155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAZ1m0x6Sogbavc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Francesco Casugnu,2019-05-18,1,Francesco Casugnu vai a farti la visita oculistica.....😂😂😂,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517578155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAZ1m0x6Sogbavc&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gio Magro,,2019-05-18,4,Grande capitano,/profile.php?id=100008937103824&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=420&av=100013534782121&eav=AfZX8FmllHHG4PVhM_OPEJ152kXc4jE2oXk1pcKA9YgjhJ-Nmw-L3LwtA0pEQPozpYI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Edoardo Genovese,,2019-05-18,4,,/edoardo.genovese.79?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=420&av=100013534782121&eav=AfZX8FmllHHG4PVhM_OPEJ152kXc4jE2oXk1pcKA9YgjhJ-Nmw-L3LwtA0pEQPozpYI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Cuomo,,2019-05-18,,Matteo io purtroppo nn c'ero x motivi di lavoro ....Ero vicina con il pensiero !!!SEI GRANDE CAPITANO 😃👏👏👏 TUTTI CON CHI DIFENDE GLI ITALIANI ELA NOSTRA RELIGIONE ....🙏🍃,/maria.cuomo.9465?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=420&av=100013534782121&eav=AfZX8FmllHHG4PVhM_OPEJ152kXc4jE2oXk1pcKA9YgjhJ-Nmw-L3LwtA0pEQPozpYI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rena Reny Congiu,,2019-05-18,4,Impossibile non vincere il 26....💪,/renato.congiu.16?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=420&av=100013534782121&eav=AfZX8FmllHHG4PVhM_OPEJ152kXc4jE2oXk1pcKA9YgjhJ-Nmw-L3LwtA0pEQPozpYI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marisa Volpi,,2019-05-18,4,Non ci sono parole grandi quelli che ci sono e grande Matteo,/profile.php?id=100008983514790&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=420&av=100013534782121&eav=AfZX8FmllHHG4PVhM_OPEJ152kXc4jE2oXk1pcKA9YgjhJ-Nmw-L3LwtA0pEQPozpYI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Smeraldi,,2019-05-18,4,Piddini vergogna d'europa rosicate maledetti,/francesca.smeraldi.102?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=420&av=100013534782121&eav=AfZX8FmllHHG4PVhM_OPEJ152kXc4jE2oXk1pcKA9YgjhJ-Nmw-L3LwtA0pEQPozpYI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Assunta Cenini,,2019-05-18,4,Matteo la ong e entrata in acque territoriali!! Che si fa???,/assunta.cennini.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=420&av=100013534782121&eav=AfZX8FmllHHG4PVhM_OPEJ152kXc4jE2oXk1pcKA9YgjhJ-Nmw-L3LwtA0pEQPozpYI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Egidia Raiti,,2019-05-18,4,Ed anche stavolta posso dire io c'ero !,/egidia.raiti?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=420&av=100013534782121&eav=AfZX8FmllHHG4PVhM_OPEJ152kXc4jE2oXk1pcKA9YgjhJ-Nmw-L3LwtA0pEQPozpYI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Berti,,2019-05-18,4,E il PD e non solo rosicaaaaaaaaa,/marco.berti.188?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=420&av=100013534782121&eav=AfZX8FmllHHG4PVhM_OPEJ152kXc4jE2oXk1pcKA9YgjhJ-Nmw-L3LwtA0pEQPozpYI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cinzia Passano,ROOT,2019-05-18,1,E ora.. TUTTI IN EUROPA... VOTIAMO GIUSTO!!!!!,/profile.php?id=100013069541092&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366828180843958&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQB4AI7g-PRBVhtV&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +MLucia-Graziella Meuli,Cinzia Passano,2019-05-18,1,VOTIAMO TUTTI MATTEOOOOOOO PER CAMBIARE L ITALIA E L EUROPA!!! OLEEEE <3 GRANDEEEEE,/profile.php?id=100008203032482&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_366828180843958&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQB4AI7g-PRBVhtV&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=690&av=100013534782121&eav=AfZHpkJLd5suE6rS3S--MmDNUyam3E-acZ7wZ1UD1RnaKhy0bVuKmIz-4P7x3Gv_JKI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Feudo,,2019-05-18,,,/anna.feudo.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=690&av=100013534782121&eav=AfZHpkJLd5suE6rS3S--MmDNUyam3E-acZ7wZ1UD1RnaKhy0bVuKmIz-4P7x3Gv_JKI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristiano Sartori,,2019-05-18,,IL CAPITANOOOOO E IL KOMANDANTE COPPIA PERFETTA,/cristiano.sartori.5095?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=690&av=100013534782121&eav=AfZHpkJLd5suE6rS3S--MmDNUyam3E-acZ7wZ1UD1RnaKhy0bVuKmIz-4P7x3Gv_JKI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Eleonora Cardia,,2019-05-18,1,,/MariaEleonora61?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=690&av=100013534782121&eav=AfZHpkJLd5suE6rS3S--MmDNUyam3E-acZ7wZ1UD1RnaKhy0bVuKmIz-4P7x3Gv_JKI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Eleonora Cardia,,2019-05-18,,,/MariaEleonora61?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=690&av=100013534782121&eav=AfZHpkJLd5suE6rS3S--MmDNUyam3E-acZ7wZ1UD1RnaKhy0bVuKmIz-4P7x3Gv_JKI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Both,,2019-05-18,,,/profile.php?id=100011009070930&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=690&av=100013534782121&eav=AfZHpkJLd5suE6rS3S--MmDNUyam3E-acZ7wZ1UD1RnaKhy0bVuKmIz-4P7x3Gv_JKI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Both,,2019-05-18,,,/profile.php?id=100011009070930&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=690&av=100013534782121&eav=AfZHpkJLd5suE6rS3S--MmDNUyam3E-acZ7wZ1UD1RnaKhy0bVuKmIz-4P7x3Gv_JKI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Both,,2019-05-18,,,/profile.php?id=100011009070930&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=690&av=100013534782121&eav=AfZHpkJLd5suE6rS3S--MmDNUyam3E-acZ7wZ1UD1RnaKhy0bVuKmIz-4P7x3Gv_JKI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Eleonora Cardia,,2019-05-18,,,/MariaEleonora61?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=690&av=100013534782121&eav=AfZHpkJLd5suE6rS3S--MmDNUyam3E-acZ7wZ1UD1RnaKhy0bVuKmIz-4P7x3Gv_JKI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Mascia,ROOT,2019-05-18,4,È sempre così il sabato scemo,/giovanni.mascia.754?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622534033155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC_KELHBg9CpZWX&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fabrizio Boidi,Giovanni Mascia,2019-05-18,2,Giovanni Mascia impiccati,/fabrizio.boidi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622534033155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC_KELHBg9CpZWX&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giovanni Mascia,Giovanni Mascia,2019-05-18,,Marco Bitti Francesco Valmaggia Matteo Pintore,/giovanni.mascia.754?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622534033155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC_KELHBg9CpZWX&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Francesco Valmaggia,Giovanni Mascia,2019-05-18,4,fabrizio boidi sei uno scemo,/valmaggia?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622534033155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC_KELHBg9CpZWX&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marco Bitti,Giovanni Mascia,2019-05-18,4,Boldi ma che sei scemo totale? Shitstorm sulla pianura padana che hai in testa,/marco.bitti.31?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622534033155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC_KELHBg9CpZWX&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Eleonora Cardia,,2019-05-18,,,/MariaEleonora61?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=700&av=100013534782121&eav=Afbc95BQWSJtfLHWZbYFSrDrbSs_4tvFMC4k40w8vbwbdlZrMv2J-O5_KG975BwZbKk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Eleonora Cardia,,2019-05-18,,,/MariaEleonora61?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=700&av=100013534782121&eav=Afbc95BQWSJtfLHWZbYFSrDrbSs_4tvFMC4k40w8vbwbdlZrMv2J-O5_KG975BwZbKk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Eleonora Cardia,,2019-05-18,,,/MariaEleonora61?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=700&av=100013534782121&eav=Afbc95BQWSJtfLHWZbYFSrDrbSs_4tvFMC4k40w8vbwbdlZrMv2J-O5_KG975BwZbKk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +NadiaLedy Rey,,2019-05-18,1,,/ledy.rey.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=700&av=100013534782121&eav=Afbc95BQWSJtfLHWZbYFSrDrbSs_4tvFMC4k40w8vbwbdlZrMv2J-O5_KG975BwZbKk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +NadiaLedy Rey,,2019-05-18,1,,/ledy.rey.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=700&av=100013534782121&eav=Afbc95BQWSJtfLHWZbYFSrDrbSs_4tvFMC4k40w8vbwbdlZrMv2J-O5_KG975BwZbKk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +NadiaLedy Rey,,2019-05-18,,,/ledy.rey.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=700&av=100013534782121&eav=Afbc95BQWSJtfLHWZbYFSrDrbSs_4tvFMC4k40w8vbwbdlZrMv2J-O5_KG975BwZbKk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +NadiaLedy Rey,,2019-05-18,,,/ledy.rey.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=700&av=100013534782121&eav=Afbc95BQWSJtfLHWZbYFSrDrbSs_4tvFMC4k40w8vbwbdlZrMv2J-O5_KG975BwZbKk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cobrescu Aurelian Si Maria,,2019-05-18,,♥️♥️♥️,/aurelian.cobrescu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=700&av=100013534782121&eav=Afbc95BQWSJtfLHWZbYFSrDrbSs_4tvFMC4k40w8vbwbdlZrMv2J-O5_KG975BwZbKk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mária Řezáčová,,2019-05-18,,,/maria.rezacova?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=700&av=100013534782121&eav=Afbc95BQWSJtfLHWZbYFSrDrbSs_4tvFMC4k40w8vbwbdlZrMv2J-O5_KG975BwZbKk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandra Albi,,2019-05-18,,,/alessandra.albi.10?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=700&av=100013534782121&eav=Afbc95BQWSJtfLHWZbYFSrDrbSs_4tvFMC4k40w8vbwbdlZrMv2J-O5_KG975BwZbKk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pedro Josè Abramini,,2019-05-18,2,Capitano sei la speranza per una Italia migliore !!!!🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹,/josepedro.abramini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=710&av=100013534782121&eav=AfZEILkdXJdErv2jVUU9DpS50czD6Ymhwg8gZIqRmdmNJs2rw-b7VOF7UdHmM5_cXl0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vincent Cantocci,,2019-05-18,,,/vincent.cantocci?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=710&av=100013534782121&eav=AfZEILkdXJdErv2jVUU9DpS50czD6Ymhwg8gZIqRmdmNJs2rw-b7VOF7UdHmM5_cXl0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Bortini,,2019-05-18,,,/maria.bortini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=710&av=100013534782121&eav=AfZEILkdXJdErv2jVUU9DpS50czD6Ymhwg8gZIqRmdmNJs2rw-b7VOF7UdHmM5_cXl0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Allisiardi,,2019-05-18,,,/profile.php?id=100005315747711&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=710&av=100013534782121&eav=AfZEILkdXJdErv2jVUU9DpS50czD6Ymhwg8gZIqRmdmNJs2rw-b7VOF7UdHmM5_cXl0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,,,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=710&av=100013534782121&eav=AfZEILkdXJdErv2jVUU9DpS50czD6Ymhwg8gZIqRmdmNJs2rw-b7VOF7UdHmM5_cXl0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giampiero Previdi,,2019-05-18,,Cammino ancora lungo ma la strada e' tracciata,/giampiero.previdi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=710&av=100013534782121&eav=AfZEILkdXJdErv2jVUU9DpS50czD6Ymhwg8gZIqRmdmNJs2rw-b7VOF7UdHmM5_cXl0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,,,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=710&av=100013534782121&eav=AfZEILkdXJdErv2jVUU9DpS50czD6Ymhwg8gZIqRmdmNJs2rw-b7VOF7UdHmM5_cXl0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,,,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=710&av=100013534782121&eav=AfZEILkdXJdErv2jVUU9DpS50czD6Ymhwg8gZIqRmdmNJs2rw-b7VOF7UdHmM5_cXl0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,,,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=710&av=100013534782121&eav=AfZEILkdXJdErv2jVUU9DpS50czD6Ymhwg8gZIqRmdmNJs2rw-b7VOF7UdHmM5_cXl0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,,,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=710&av=100013534782121&eav=AfZEILkdXJdErv2jVUU9DpS50czD6Ymhwg8gZIqRmdmNJs2rw-b7VOF7UdHmM5_cXl0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sergio Mentasti,ROOT,2019-05-18,3,,/profile.php?id=100009417086062&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622564263155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB8zybjkKBRJIl2&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marcella Bonacchi,,2019-05-18,,,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=720&av=100013534782121&eav=AfYoum1ty_f35yp0GIHsQVi9qWnbCGA4tc031ITt-mfztRz6Jay8FykssJEprTD6haQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,,,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=720&av=100013534782121&eav=AfYoum1ty_f35yp0GIHsQVi9qWnbCGA4tc031ITt-mfztRz6Jay8FykssJEprTD6haQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,1,E le nonnine che ti fanno da nonne?? Non prendere freddo... Grandi iiiiiii,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=720&av=100013534782121&eav=AfYoum1ty_f35yp0GIHsQVi9qWnbCGA4tc031ITt-mfztRz6Jay8FykssJEprTD6haQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ivelise Orlando,,2019-05-18,,,/ivelise.orlando?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=720&av=100013534782121&eav=AfYoum1ty_f35yp0GIHsQVi9qWnbCGA4tc031ITt-mfztRz6Jay8FykssJEprTD6haQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Limpetti,,2019-05-18,,,/paola.limpetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=720&av=100013534782121&eav=AfYoum1ty_f35yp0GIHsQVi9qWnbCGA4tc031ITt-mfztRz6Jay8FykssJEprTD6haQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Limpetti,,2019-05-18,,,/paola.limpetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=720&av=100013534782121&eav=AfYoum1ty_f35yp0GIHsQVi9qWnbCGA4tc031ITt-mfztRz6Jay8FykssJEprTD6haQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Limpetti,,2019-05-18,1,,/paola.limpetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=720&av=100013534782121&eav=AfYoum1ty_f35yp0GIHsQVi9qWnbCGA4tc031ITt-mfztRz6Jay8FykssJEprTD6haQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Limpetti,,2019-05-18,,,/paola.limpetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=720&av=100013534782121&eav=AfYoum1ty_f35yp0GIHsQVi9qWnbCGA4tc031ITt-mfztRz6Jay8FykssJEprTD6haQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Limpetti,,2019-05-18,1,,/paola.limpetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=720&av=100013534782121&eav=AfYoum1ty_f35yp0GIHsQVi9qWnbCGA4tc031ITt-mfztRz6Jay8FykssJEprTD6haQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Limpetti,,2019-05-18,,,/paola.limpetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=720&av=100013534782121&eav=AfYoum1ty_f35yp0GIHsQVi9qWnbCGA4tc031ITt-mfztRz6Jay8FykssJEprTD6haQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Limpetti,,2019-05-18,,,/paola.limpetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=730&av=100013534782121&eav=AfaZofeN7q_2aLpnDSLc7IZcz7ayUI5v5O_-ekP5bWZ6CeLL3yS_85omnra_7dK1fQs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Limpetti,,2019-05-18,,,/paola.limpetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=730&av=100013534782121&eav=AfaZofeN7q_2aLpnDSLc7IZcz7ayUI5v5O_-ekP5bWZ6CeLL3yS_85omnra_7dK1fQs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Virdis Annamaria,,2019-05-18,,,/profile.php?id=100010002454203&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=730&av=100013534782121&eav=AfaZofeN7q_2aLpnDSLc7IZcz7ayUI5v5O_-ekP5bWZ6CeLL3yS_85omnra_7dK1fQs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Virdis Annamaria,,2019-05-18,1,,/profile.php?id=100010002454203&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=730&av=100013534782121&eav=AfaZofeN7q_2aLpnDSLc7IZcz7ayUI5v5O_-ekP5bWZ6CeLL3yS_85omnra_7dK1fQs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Virdis Annamaria,,2019-05-18,,,/profile.php?id=100010002454203&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=730&av=100013534782121&eav=AfaZofeN7q_2aLpnDSLc7IZcz7ayUI5v5O_-ekP5bWZ6CeLL3yS_85omnra_7dK1fQs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Virdis Annamaria,,2019-05-18,,,/profile.php?id=100010002454203&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=730&av=100013534782121&eav=AfaZofeN7q_2aLpnDSLc7IZcz7ayUI5v5O_-ekP5bWZ6CeLL3yS_85omnra_7dK1fQs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Virdis Annamaria,,2019-05-18,,,/profile.php?id=100010002454203&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=730&av=100013534782121&eav=AfaZofeN7q_2aLpnDSLc7IZcz7ayUI5v5O_-ekP5bWZ6CeLL3yS_85omnra_7dK1fQs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cesarina Molinari,,2019-05-18,,,/cesarina.molinari?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=730&av=100013534782121&eav=AfaZofeN7q_2aLpnDSLc7IZcz7ayUI5v5O_-ekP5bWZ6CeLL3yS_85omnra_7dK1fQs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cesarina Molinari,,2019-05-18,,,/cesarina.molinari?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=730&av=100013534782121&eav=AfaZofeN7q_2aLpnDSLc7IZcz7ayUI5v5O_-ekP5bWZ6CeLL3yS_85omnra_7dK1fQs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cesarina Molinari,,2019-05-18,,,/cesarina.molinari?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=730&av=100013534782121&eav=AfaZofeN7q_2aLpnDSLc7IZcz7ayUI5v5O_-ekP5bWZ6CeLL3yS_85omnra_7dK1fQs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marina Stella,ROOT,2019-05-18,3,La gente normale è questa,/profile.php?id=100008416475865&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265828567003606&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAI2yVLdwjiAVMi&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Marina Stella,2019-05-18,,Marina Stella normale ma sopratutto ONESTA !! EVVIVA SALVINI!! 💚💖🇮🇹👏👏👏👏👏🍾🍾🍾,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265828567003606&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAI2yVLdwjiAVMi&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giancarlo Ciapessoni,,2019-05-18,2,Sei il migliore 💪N 1,/giancarlo.ciapessoni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=740&av=100013534782121&eav=AfalM7L5na5hP-n1Mxbxiu5INrzTf7e3cu8eVkmj6_WkXo4HqP_TgS-BvEGpEwfHVZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Angy Gentile,,2019-05-18,,,/profile.php?id=100010166589867&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=740&av=100013534782121&eav=AfalM7L5na5hP-n1Mxbxiu5INrzTf7e3cu8eVkmj6_WkXo4HqP_TgS-BvEGpEwfHVZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Angy Gentile,,2019-05-18,,,/profile.php?id=100010166589867&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=740&av=100013534782121&eav=AfalM7L5na5hP-n1Mxbxiu5INrzTf7e3cu8eVkmj6_WkXo4HqP_TgS-BvEGpEwfHVZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Limpetti,,2019-05-18,,Dai che siamo dalla tua parte carissimo ministro 🙂🙂,/paola.limpetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=740&av=100013534782121&eav=AfalM7L5na5hP-n1Mxbxiu5INrzTf7e3cu8eVkmj6_WkXo4HqP_TgS-BvEGpEwfHVZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Cresta,,2019-05-18,,,/antonella.cresta.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=740&av=100013534782121&eav=AfalM7L5na5hP-n1Mxbxiu5INrzTf7e3cu8eVkmj6_WkXo4HqP_TgS-BvEGpEwfHVZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Annemie Nehrkorn,,2019-05-18,,,/annemie.nehrkorn.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=740&av=100013534782121&eav=AfalM7L5na5hP-n1Mxbxiu5INrzTf7e3cu8eVkmj6_WkXo4HqP_TgS-BvEGpEwfHVZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Eleonora Cardia,,2019-05-18,4,Bellissimo vedere tanta gente che ti ama !!!!💗💗💗,/MariaEleonora61?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=740&av=100013534782121&eav=AfalM7L5na5hP-n1Mxbxiu5INrzTf7e3cu8eVkmj6_WkXo4HqP_TgS-BvEGpEwfHVZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ghita Huls,,2019-05-18,,,/profile.php?id=100001911903637&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=740&av=100013534782121&eav=AfalM7L5na5hP-n1Mxbxiu5INrzTf7e3cu8eVkmj6_WkXo4HqP_TgS-BvEGpEwfHVZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Ferraie,,2019-05-18,,,/roberta.ferraie.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=740&av=100013534782121&eav=AfalM7L5na5hP-n1Mxbxiu5INrzTf7e3cu8eVkmj6_WkXo4HqP_TgS-BvEGpEwfHVZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Ferraie,,2019-05-18,,,/roberta.ferraie.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=740&av=100013534782121&eav=AfalM7L5na5hP-n1Mxbxiu5INrzTf7e3cu8eVkmj6_WkXo4HqP_TgS-BvEGpEwfHVZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Egidia Raiti,,2019-05-18,4,Ed anche stavolta posso dire io c'ero !,/egidia.raiti?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=430&av=100013534782121&eav=AfY23eGlsCYnsjFRjwKtdN8-9sgE8ydncZkXqvKg5LgX5uY2LblDRoJsq-AhwdqqWeI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Berti,,2019-05-18,4,E il PD e non solo rosicaaaaaaaaa,/marco.berti.188?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=430&av=100013534782121&eav=AfY23eGlsCYnsjFRjwKtdN8-9sgE8ydncZkXqvKg5LgX5uY2LblDRoJsq-AhwdqqWeI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carol Marg,,2019-05-18,5,"GRANDE, GRANDE, GRANDE IL NOSTRO MINISTRO SALVINI !!!",/carol.marg.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=430&av=100013534782121&eav=AfY23eGlsCYnsjFRjwKtdN8-9sgE8ydncZkXqvKg5LgX5uY2LblDRoJsq-AhwdqqWeI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giò Rosa,,2019-05-18,4,"Te lo meriti, grazie Matteo",/gio.rosa.37?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=430&av=100013534782121&eav=AfY23eGlsCYnsjFRjwKtdN8-9sgE8ydncZkXqvKg5LgX5uY2LblDRoJsq-AhwdqqWeI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Agostino Alfieri,,2019-05-18,4,Grandu capitano eeeevai....!!!!!,/agostino.alfieri.14?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=430&av=100013534782121&eav=AfY23eGlsCYnsjFRjwKtdN8-9sgE8ydncZkXqvKg5LgX5uY2LblDRoJsq-AhwdqqWeI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mariarosaria Romano,,2019-05-18,4,La mia Milano tutta con te❤,/mariarosaria.romano.754?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=430&av=100013534782121&eav=AfY23eGlsCYnsjFRjwKtdN8-9sgE8ydncZkXqvKg5LgX5uY2LblDRoJsq-AhwdqqWeI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Donato Rutigliano,,2019-05-18,4,Di Maio.....un vero pupazzetto in mano al PD.,/donato.rutigliano.370?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=430&av=100013534782121&eav=AfY23eGlsCYnsjFRjwKtdN8-9sgE8ydncZkXqvKg5LgX5uY2LblDRoJsq-AhwdqqWeI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Ferraie,,2019-05-18,,,/roberta.ferraie.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=750&av=100013534782121&eav=AfaN6KFQREt6BC9D6wLh-1mNj0CbZyuprcWx895TY34E2YaGafL89cP6P7_wrvgzqmE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella D'Alessio,,2019-05-18,,,/antonella.dalessio.98?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=750&av=100013534782121&eav=AfaN6KFQREt6BC9D6wLh-1mNj0CbZyuprcWx895TY34E2YaGafL89cP6P7_wrvgzqmE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella D'Alessio,,2019-05-18,,,/antonella.dalessio.98?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=750&av=100013534782121&eav=AfaN6KFQREt6BC9D6wLh-1mNj0CbZyuprcWx895TY34E2YaGafL89cP6P7_wrvgzqmE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luciana Semerano,,2019-05-18,,,/luciana.semerano?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=750&av=100013534782121&eav=AfaN6KFQREt6BC9D6wLh-1mNj0CbZyuprcWx895TY34E2YaGafL89cP6P7_wrvgzqmE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lega Piu,,2019-05-18,2,Grande CAPITANO. ..SEMPRE CON TE. ..FORZA LEGAAAA,/massimiliano.piu.35?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=750&av=100013534782121&eav=AfaN6KFQREt6BC9D6wLh-1mNj0CbZyuprcWx895TY34E2YaGafL89cP6P7_wrvgzqmE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuliana Del Bianco,,2019-05-18,,,/giuliana.delbianco?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=750&av=100013534782121&eav=AfaN6KFQREt6BC9D6wLh-1mNj0CbZyuprcWx895TY34E2YaGafL89cP6P7_wrvgzqmE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Sambo,,2019-05-18,,,/marco.sambo.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=750&av=100013534782121&eav=AfaN6KFQREt6BC9D6wLh-1mNj0CbZyuprcWx895TY34E2YaGafL89cP6P7_wrvgzqmE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nikos Theodoropoulos,,2019-05-18,,,/nikos.theodoropoulos.98?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=750&av=100013534782121&eav=AfaN6KFQREt6BC9D6wLh-1mNj0CbZyuprcWx895TY34E2YaGafL89cP6P7_wrvgzqmE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nikos Theodoropoulos,,2019-05-18,,,/nikos.theodoropoulos.98?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=750&av=100013534782121&eav=AfaN6KFQREt6BC9D6wLh-1mNj0CbZyuprcWx895TY34E2YaGafL89cP6P7_wrvgzqmE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nikos Theodoropoulos,,2019-05-18,,,/nikos.theodoropoulos.98?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=750&av=100013534782121&eav=AfaN6KFQREt6BC9D6wLh-1mNj0CbZyuprcWx895TY34E2YaGafL89cP6P7_wrvgzqmE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Pizzo,,2019-05-18,4,Lo meriti xké sei grandeeeee,/profile.php?id=100005288924684&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=440&av=100013534782121&eav=AfaMN2ZK_IEKGVP0UDijoygWrCXXIzDMTaQ42TzJWnGmCjm-w8OQqbCbpPz_E_NKNv4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cinzia Ciardi,,2019-05-18,3,Che spettacolo!! Te lo meriti tutto!!,/cinzia.ciardi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=440&av=100013534782121&eav=AfaMN2ZK_IEKGVP0UDijoygWrCXXIzDMTaQ42TzJWnGmCjm-w8OQqbCbpPz_E_NKNv4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cele Stella Carraro,,2019-05-18,3,DI MATTEO CE N'E' UNO!!!! TUTTI gli altri son nessuno!!!!,/stella.carraro.549?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=440&av=100013534782121&eav=AfaMN2ZK_IEKGVP0UDijoygWrCXXIzDMTaQ42TzJWnGmCjm-w8OQqbCbpPz_E_NKNv4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ele Eleonora,,2019-05-18,1,"Una piazza strapiena di gente per bene, ma Repubblica e gli altri giornaloni parlano degli striscioni.....si rosica un poco 🤣😂😂",/elena.ele.773?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=440&av=100013534782121&eav=AfaMN2ZK_IEKGVP0UDijoygWrCXXIzDMTaQ42TzJWnGmCjm-w8OQqbCbpPz_E_NKNv4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Zerbinati,,2019-05-18,4,Io c'ero è stato bellissimo grazie Capitanooooo,/cristina.zerbinati.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=440&av=100013534782121&eav=AfaMN2ZK_IEKGVP0UDijoygWrCXXIzDMTaQ42TzJWnGmCjm-w8OQqbCbpPz_E_NKNv4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loredana Vecchio,,2019-05-18,3,e pioveva .... se non pioveva altro che 150.000 il doppio ....,/loredana.vecchio.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=440&av=100013534782121&eav=AfaMN2ZK_IEKGVP0UDijoygWrCXXIzDMTaQ42TzJWnGmCjm-w8OQqbCbpPz_E_NKNv4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Adriana Turrini,,2019-05-18,4,,/adriana.turrini.54?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=440&av=100013534782121&eav=AfaMN2ZK_IEKGVP0UDijoygWrCXXIzDMTaQ42TzJWnGmCjm-w8OQqbCbpPz_E_NKNv4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Sansavini,,2019-05-18,3,Di Maio piccoli RAS di quartiere con armi spuntate,/angela.sansavini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=440&av=100013534782121&eav=AfaMN2ZK_IEKGVP0UDijoygWrCXXIzDMTaQ42TzJWnGmCjm-w8OQqbCbpPz_E_NKNv4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marta Santamarta,,2019-05-18,3,Matteo sei grande che Dio ti protegga sempre,/marta.santamarta.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=440&av=100013534782121&eav=AfaMN2ZK_IEKGVP0UDijoygWrCXXIzDMTaQ42TzJWnGmCjm-w8OQqbCbpPz_E_NKNv4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franci Rossi,,2019-05-18,3,Io ti ho adorato Ministro,/franci.rossi.58?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=440&av=100013534782121&eav=AfaMN2ZK_IEKGVP0UDijoygWrCXXIzDMTaQ42TzJWnGmCjm-w8OQqbCbpPz_E_NKNv4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nikos Theodoropoulos,,2019-05-18,,,/nikos.theodoropoulos.98?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=760&av=100013534782121&eav=AfbJVL4JVFzRwh3OBPkmoJfBgIHA6V2yAY7P1jyhAfh10CBdhhhXHWYPvHMMmLlIilE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Giua,,2019-05-18,,,/daniela.giua.14?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=760&av=100013534782121&eav=AfbJVL4JVFzRwh3OBPkmoJfBgIHA6V2yAY7P1jyhAfh10CBdhhhXHWYPvHMMmLlIilE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuliano Palma,,2019-05-18,2,Instancabile e meraviglioso!,/palmagiuliano?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=760&av=100013534782121&eav=AfbJVL4JVFzRwh3OBPkmoJfBgIHA6V2yAY7P1jyhAfh10CBdhhhXHWYPvHMMmLlIilE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Concettina de Santis,,2019-05-18,1,,/concettina.desantis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=760&av=100013534782121&eav=AfbJVL4JVFzRwh3OBPkmoJfBgIHA6V2yAY7P1jyhAfh10CBdhhhXHWYPvHMMmLlIilE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesco Fangano,,2019-05-18,,,/francesco.fangano.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=760&av=100013534782121&eav=AfbJVL4JVFzRwh3OBPkmoJfBgIHA6V2yAY7P1jyhAfh10CBdhhhXHWYPvHMMmLlIilE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fiamma Candela,,2019-05-18,,,/fiamma.candela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=760&av=100013534782121&eav=AfbJVL4JVFzRwh3OBPkmoJfBgIHA6V2yAY7P1jyhAfh10CBdhhhXHWYPvHMMmLlIilE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Barbara Fusco,,2019-05-18,2,AVANTI TUTTA CAPITANO!!,/barbarabarbylu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=760&av=100013534782121&eav=AfbJVL4JVFzRwh3OBPkmoJfBgIHA6V2yAY7P1jyhAfh10CBdhhhXHWYPvHMMmLlIilE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Maggiolo,,2019-05-18,,,/laura.maggiolo.161?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=760&av=100013534782121&eav=AfbJVL4JVFzRwh3OBPkmoJfBgIHA6V2yAY7P1jyhAfh10CBdhhhXHWYPvHMMmLlIilE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Susy Kabiria,,2019-05-18,,,/susy.kabiria?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=760&av=100013534782121&eav=AfbJVL4JVFzRwh3OBPkmoJfBgIHA6V2yAY7P1jyhAfh10CBdhhhXHWYPvHMMmLlIilE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marina Massa Trucat,,2019-05-18,,,/marina.massatrucat.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=760&av=100013534782121&eav=AfbJVL4JVFzRwh3OBPkmoJfBgIHA6V2yAY7P1jyhAfh10CBdhhhXHWYPvHMMmLlIilE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Oliveti,,2019-05-18,,,/maria.oliveti.16?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=770&av=100013534782121&eav=Afb6Kt6fe6DYEno-KuupP2Ui6OTTi-GcbEZKO4AgoErdLzz9sgRMcJCWO2fm-4qM55c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +გული ჩიქობავა,,2019-05-18,,,/profile.php?id=100009280641140&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=770&av=100013534782121&eav=Afb6Kt6fe6DYEno-KuupP2Ui6OTTi-GcbEZKO4AgoErdLzz9sgRMcJCWO2fm-4qM55c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianna Petei,,2019-05-18,,,/gianna.petei?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=770&av=100013534782121&eav=Afb6Kt6fe6DYEno-KuupP2Ui6OTTi-GcbEZKO4AgoErdLzz9sgRMcJCWO2fm-4qM55c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sandra Chiricozzi,,2019-05-18,2,"Matteo, ci hai regalato una grandissima emozione..💚💚💚💚💚💚",/sandra.chiricozzi.96?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=770&av=100013534782121&eav=Afb6Kt6fe6DYEno-KuupP2Ui6OTTi-GcbEZKO4AgoErdLzz9sgRMcJCWO2fm-4qM55c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rita Trogu,,2019-05-18,,,/rita.trogu.52?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=770&av=100013534782121&eav=Afb6Kt6fe6DYEno-KuupP2Ui6OTTi-GcbEZKO4AgoErdLzz9sgRMcJCWO2fm-4qM55c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rita Trogu,,2019-05-18,,,/rita.trogu.52?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=770&av=100013534782121&eav=Afb6Kt6fe6DYEno-KuupP2Ui6OTTi-GcbEZKO4AgoErdLzz9sgRMcJCWO2fm-4qM55c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vanda Barassi,,2019-05-18,,,/vanda.barassi.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=770&av=100013534782121&eav=Afb6Kt6fe6DYEno-KuupP2Ui6OTTi-GcbEZKO4AgoErdLzz9sgRMcJCWO2fm-4qM55c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Edoardo Piacentini,,2019-05-18,,,/edoardo.piacentini.79?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=770&av=100013534782121&eav=Afb6Kt6fe6DYEno-KuupP2Ui6OTTi-GcbEZKO4AgoErdLzz9sgRMcJCWO2fm-4qM55c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ginetta Boscolo Chio,,2019-05-18,,,/ginetta.boscolochio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=770&av=100013534782121&eav=Afb6Kt6fe6DYEno-KuupP2Ui6OTTi-GcbEZKO4AgoErdLzz9sgRMcJCWO2fm-4qM55c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tonino Tuvoni,,2019-05-18,,,/tonino.tuvoni.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=770&av=100013534782121&eav=Afb6Kt6fe6DYEno-KuupP2Ui6OTTi-GcbEZKO4AgoErdLzz9sgRMcJCWO2fm-4qM55c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefano Santi,ROOT,2019-05-18,4,Solo un uomo fece questo in Italia...,/stefano.santi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516273155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDTqpso0tVqfMm1&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Michelina,Stefano Santi,2019-05-18,,Stefano Santi Io di una certa età sempre presente 😘,/ivana.furno?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516273155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDTqpso0tVqfMm1&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giancarlo Contarino,Stefano Santi,2019-05-18,,Stefano Santi per questo gli danno del fascista 😂😂,/profile.php?id=100009471039173&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516273155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDTqpso0tVqfMm1&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giacomo Riccio,Stefano Santi,2019-05-18,,Stefano Santi per fortuna direi 🤦‍♂️ Pensa che 10 di quelli hanno vinto una telefonata con lui 😂😂😂 #bancarella,/giacomo.riccio.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516273155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDTqpso0tVqfMm1&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Stefano Santi,Stefano Santi,2019-05-18,1,Giacomo Riccio ma pure qua devi rompe Er c...😂😂🤣🤣🤣🤣😂🤣😂 Ciao bo,/stefano.santi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516273155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDTqpso0tVqfMm1&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giacomo Riccio,Stefano Santi,2019-05-18,,Stefano Santi e tu gratti dove mi prude 😂😂😂 e poi sono un abituè del commento sotto questi post 😂😂😂 Cià Stè 😊,/giacomo.riccio.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516273155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDTqpso0tVqfMm1&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Stefano Santi,Stefano Santi,2019-05-18,1,Giacomo Riccio ahahahahaha si li leggo ahahahahaha tvb strunz abbiamo tante idee contrarie ma t stimo lo stesso...ciau e buona stagione torna a Tenerife ora sto da dio,/stefano.santi.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516273155&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDTqpso0tVqfMm1&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Michela Murgolo,,2019-05-18,,,/profile.php?id=100012035448150&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=780&av=100013534782121&eav=AfbTkFoXs0asQL3dlpWTZ2MPGq-TFR_3iQsXtURHY3f5c7OsQIBEUdE7KIQru6jfteQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Michela Murgolo,,2019-05-18,,,/profile.php?id=100012035448150&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=780&av=100013534782121&eav=AfbTkFoXs0asQL3dlpWTZ2MPGq-TFR_3iQsXtURHY3f5c7OsQIBEUdE7KIQru6jfteQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Michela Murgolo,,2019-05-18,,,/profile.php?id=100012035448150&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=780&av=100013534782121&eav=AfbTkFoXs0asQL3dlpWTZ2MPGq-TFR_3iQsXtURHY3f5c7OsQIBEUdE7KIQru6jfteQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Michela Murgolo,,2019-05-18,,,/profile.php?id=100012035448150&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=780&av=100013534782121&eav=AfbTkFoXs0asQL3dlpWTZ2MPGq-TFR_3iQsXtURHY3f5c7OsQIBEUdE7KIQru6jfteQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Michela Murgolo,,2019-05-18,,,/profile.php?id=100012035448150&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=780&av=100013534782121&eav=AfbTkFoXs0asQL3dlpWTZ2MPGq-TFR_3iQsXtURHY3f5c7OsQIBEUdE7KIQru6jfteQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ornella Piscedda,,2019-05-18,,,/ornella.piscedda.56?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=780&av=100013534782121&eav=AfbTkFoXs0asQL3dlpWTZ2MPGq-TFR_3iQsXtURHY3f5c7OsQIBEUdE7KIQru6jfteQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ornella Piscedda,,2019-05-18,,,/ornella.piscedda.56?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=780&av=100013534782121&eav=AfbTkFoXs0asQL3dlpWTZ2MPGq-TFR_3iQsXtURHY3f5c7OsQIBEUdE7KIQru6jfteQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sifu Marika Antonella Mereu,,2019-05-18,,,/SenseiMarikaAntonellaMereu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=780&av=100013534782121&eav=AfbTkFoXs0asQL3dlpWTZ2MPGq-TFR_3iQsXtURHY3f5c7OsQIBEUdE7KIQru6jfteQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sifu Marika Antonella Mereu,,2019-05-18,,,/SenseiMarikaAntonellaMereu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=780&av=100013534782121&eav=AfbTkFoXs0asQL3dlpWTZ2MPGq-TFR_3iQsXtURHY3f5c7OsQIBEUdE7KIQru6jfteQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sifu Marika Antonella Mereu,,2019-05-18,,,/SenseiMarikaAntonellaMereu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=780&av=100013534782121&eav=AfbTkFoXs0asQL3dlpWTZ2MPGq-TFR_3iQsXtURHY3f5c7OsQIBEUdE7KIQru6jfteQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tonia Tonia,,2019-05-18,,,/tonia.tonia.9237244?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=790&av=100013534782121&eav=AfYZe5y3JOYjcV_rKfIubThCT4QaYuXfmsyGITjbI8TvRf9x4fKW99dZ8ET-GJR8Rv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franceschina Barile,,2019-05-18,,,/franceschina.barile.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=790&av=100013534782121&eav=AfYZe5y3JOYjcV_rKfIubThCT4QaYuXfmsyGITjbI8TvRf9x4fKW99dZ8ET-GJR8Rv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Giacobbi,,2019-05-18,,,/profile.php?id=100008391255279&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=790&av=100013534782121&eav=AfYZe5y3JOYjcV_rKfIubThCT4QaYuXfmsyGITjbI8TvRf9x4fKW99dZ8ET-GJR8Rv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianluigi Fabiano,,2019-05-18,,,/gianluigi.fabiano.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=790&av=100013534782121&eav=AfYZe5y3JOYjcV_rKfIubThCT4QaYuXfmsyGITjbI8TvRf9x4fKW99dZ8ET-GJR8Rv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Agostina Blinda,,2019-05-18,,,/agostina.brundo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=790&av=100013534782121&eav=AfYZe5y3JOYjcV_rKfIubThCT4QaYuXfmsyGITjbI8TvRf9x4fKW99dZ8ET-GJR8Rv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Catia Citti,,2019-05-18,,,/catia.citti.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=790&av=100013534782121&eav=AfYZe5y3JOYjcV_rKfIubThCT4QaYuXfmsyGITjbI8TvRf9x4fKW99dZ8ET-GJR8Rv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Attanasio MaddyPino,,2019-05-18,,,/maddypino.attanasio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=790&av=100013534782121&eav=AfYZe5y3JOYjcV_rKfIubThCT4QaYuXfmsyGITjbI8TvRf9x4fKW99dZ8ET-GJR8Rv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Catia Citti,,2019-05-18,,,/catia.citti.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=790&av=100013534782121&eav=AfYZe5y3JOYjcV_rKfIubThCT4QaYuXfmsyGITjbI8TvRf9x4fKW99dZ8ET-GJR8Rv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna R Melfi,,2019-05-18,,,/anna.melfi.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=790&av=100013534782121&eav=AfYZe5y3JOYjcV_rKfIubThCT4QaYuXfmsyGITjbI8TvRf9x4fKW99dZ8ET-GJR8Rv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maddalena Matarazzo,,2019-05-18,,,/maddalena.matarazzo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=790&av=100013534782121&eav=AfYZe5y3JOYjcV_rKfIubThCT4QaYuXfmsyGITjbI8TvRf9x4fKW99dZ8ET-GJR8Rv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Wally,ROOT,2019-05-18,4,Play Video,/17Wolly?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265838293669300&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC1IUt4n0ueVIij&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annita Terruli,Roberto Wally,2019-05-18,,Roberto Wally schiettino,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265838293669300&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC1IUt4n0ueVIij&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Milani Lussi,,2019-05-18,,,/milani.lussi.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=800&av=100013534782121&eav=AfaNyhyn-KiJz_asGAtG8pP3Zh6_r3ocW_eEV8_tepgSm2aEdOi54zPmu4nyLVJJSBk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Milani Lussi,,2019-05-18,,,/milani.lussi.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=800&av=100013534782121&eav=AfaNyhyn-KiJz_asGAtG8pP3Zh6_r3ocW_eEV8_tepgSm2aEdOi54zPmu4nyLVJJSBk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Milani Lussi,,2019-05-18,,,/milani.lussi.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=800&av=100013534782121&eav=AfaNyhyn-KiJz_asGAtG8pP3Zh6_r3ocW_eEV8_tepgSm2aEdOi54zPmu4nyLVJJSBk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Milani Lussi,,2019-05-18,,,/milani.lussi.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=800&av=100013534782121&eav=AfaNyhyn-KiJz_asGAtG8pP3Zh6_r3ocW_eEV8_tepgSm2aEdOi54zPmu4nyLVJJSBk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Arnesano,,2019-05-18,,,/roberto.arnesano.52?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=800&av=100013534782121&eav=AfaNyhyn-KiJz_asGAtG8pP3Zh6_r3ocW_eEV8_tepgSm2aEdOi54zPmu4nyLVJJSBk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Arnesano,,2019-05-18,,,/roberto.arnesano.52?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=800&av=100013534782121&eav=AfaNyhyn-KiJz_asGAtG8pP3Zh6_r3ocW_eEV8_tepgSm2aEdOi54zPmu4nyLVJJSBk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Licia Di Vittori,,2019-05-18,,,/licia.divittori.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=800&av=100013534782121&eav=AfaNyhyn-KiJz_asGAtG8pP3Zh6_r3ocW_eEV8_tepgSm2aEdOi54zPmu4nyLVJJSBk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Romina Ciliento,,2019-05-18,,,/romina.ciliento?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=800&av=100013534782121&eav=AfaNyhyn-KiJz_asGAtG8pP3Zh6_r3ocW_eEV8_tepgSm2aEdOi54zPmu4nyLVJJSBk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Romina Ciliento,,2019-05-18,,,/romina.ciliento?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=800&av=100013534782121&eav=AfaNyhyn-KiJz_asGAtG8pP3Zh6_r3ocW_eEV8_tepgSm2aEdOi54zPmu4nyLVJJSBk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Romina Ciliento,,2019-05-18,1,,/romina.ciliento?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=800&av=100013534782121&eav=AfaNyhyn-KiJz_asGAtG8pP3Zh6_r3ocW_eEV8_tepgSm2aEdOi54zPmu4nyLVJJSBk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Amalia Sabrina Sinopoli,ROOT,2019-05-18,3,💚💚💚💚💚💚💚💚per sempre Matteo.....,/profile.php?id=100006959658429&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301905877365225&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDmQuCERwDxZNN2&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annita Terruli,Amalia Sabrina Sinopoli,2019-05-18,,Amalia Sabrina Sinopoli ANDATE A FUNGHI,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301905877365225&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDmQuCERwDxZNN2&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Francesca Saraceno,ROOT,2019-05-18,2,Matteo cosa bevi redbuul ? Sei instancabile 👏🇮🇹,/francesca.saraceno.96?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_1119021465154249&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBPkxUXlQvrB42K&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Breeze Breeze,Francesca Saraceno,2019-05-18,,Veramente!! È una macchina da guerra quest’uomo!!,/breeze201771?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_1119021465154249&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQBPkxUXlQvrB42K&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Franci Rossi,,2019-05-18,3,Io ti ho adorato Ministro,/franci.rossi.58?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=450&av=100013534782121&eav=AfaY4Bnas47pr4kI3RvLIXdRMezKdoKAkFFyHoI8lstRz7a7qYAXnp8gRLZqm3hMAAY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lidia Maschio,,2019-05-18,3,"Che bella gente, che bei colori.",/lidia.maschio?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=450&av=100013534782121&eav=AfaY4Bnas47pr4kI3RvLIXdRMezKdoKAkFFyHoI8lstRz7a7qYAXnp8gRLZqm3hMAAY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Raimondo,,2019-05-18,3,Non avevamo dubbi 👍🏻🔝Sei un grande Salvini 👏🏻👏🏻👏🏻👏🏻👏🏻,/roberta.raimondo.50?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=450&av=100013534782121&eav=AfaY4Bnas47pr4kI3RvLIXdRMezKdoKAkFFyHoI8lstRz7a7qYAXnp8gRLZqm3hMAAY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gennaro Massa,,2019-05-18,3,"La risposta ai 5S, che non si rassegano ad essere secondi",/gennaro.massa.50?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=450&av=100013534782121&eav=AfaY4Bnas47pr4kI3RvLIXdRMezKdoKAkFFyHoI8lstRz7a7qYAXnp8gRLZqm3hMAAY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelo Lorefice,,2019-05-18,3,"Non mollare mai ,,,capitano",/angelo.lorefice.393?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=450&av=100013534782121&eav=AfaY4Bnas47pr4kI3RvLIXdRMezKdoKAkFFyHoI8lstRz7a7qYAXnp8gRLZqm3hMAAY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elisa Bracciale,,2019-05-18,3,ComplimenTI M.Salvinisei Bravissimo💚💚💚💚,/elisa.bracciale.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=450&av=100013534782121&eav=AfaY4Bnas47pr4kI3RvLIXdRMezKdoKAkFFyHoI8lstRz7a7qYAXnp8gRLZqm3hMAAY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paolo Benini,,2019-05-18,5,"Onore,Matteo! Il 27 maggio,sara' Vittoria!!!",/profile.php?id=100010968075823&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=450&av=100013534782121&eav=AfaY4Bnas47pr4kI3RvLIXdRMezKdoKAkFFyHoI8lstRz7a7qYAXnp8gRLZqm3hMAAY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Adami,,2019-05-18,,,/cristina.adami.923?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=810&av=100013534782121&eav=AfbQyguEr543GybMiEo2FBTg1lzwMzbdLD7l1Ne6Qi6PQ2gumACViFBEMGe4U7r96EE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Maria Manfrinato,,2019-05-18,,,/annamaria.manfrinato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=810&av=100013534782121&eav=AfbQyguEr543GybMiEo2FBTg1lzwMzbdLD7l1Ne6Qi6PQ2gumACViFBEMGe4U7r96EE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Maria Manfrinato,,2019-05-18,,,/annamaria.manfrinato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=810&av=100013534782121&eav=AfbQyguEr543GybMiEo2FBTg1lzwMzbdLD7l1Ne6Qi6PQ2gumACViFBEMGe4U7r96EE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Maria Manfrinato,,2019-05-18,,,/annamaria.manfrinato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=810&av=100013534782121&eav=AfbQyguEr543GybMiEo2FBTg1lzwMzbdLD7l1Ne6Qi6PQ2gumACViFBEMGe4U7r96EE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cinzia Passano,,2019-05-18,,,/profile.php?id=100013069541092&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=810&av=100013534782121&eav=AfbQyguEr543GybMiEo2FBTg1lzwMzbdLD7l1Ne6Qi6PQ2gumACViFBEMGe4U7r96EE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pasquale Brenvaldi,,2019-05-18,,,/brenvaldipasquale?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=810&av=100013534782121&eav=AfbQyguEr543GybMiEo2FBTg1lzwMzbdLD7l1Ne6Qi6PQ2gumACViFBEMGe4U7r96EE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigino Delbon,,2019-05-18,,,/luigino.delbon?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=810&av=100013534782121&eav=AfbQyguEr543GybMiEo2FBTg1lzwMzbdLD7l1Ne6Qi6PQ2gumACViFBEMGe4U7r96EE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Semprebianco,,2019-05-18,,,/antonio.semprebianco?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=810&av=100013534782121&eav=AfbQyguEr543GybMiEo2FBTg1lzwMzbdLD7l1Ne6Qi6PQ2gumACViFBEMGe4U7r96EE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Bellezza Italiana,,2019-05-18,2,È COTTO troppe EMOZIONI,/monica.miri21?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=810&av=100013534782121&eav=AfbQyguEr543GybMiEo2FBTg1lzwMzbdLD7l1Ne6Qi6PQ2gumACViFBEMGe4U7r96EE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lia Dentico,,2019-05-18,,,/profile.php?id=100010314161354&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=820&av=100013534782121&eav=AfbOuChvF34fGg9sHc4d7703RnflNNEDw-ksrlgkRmao1MBYGbrLl1md5TXyEakGpAI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Gargano,,2019-05-18,,,/maria.gargano.5055?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=820&av=100013534782121&eav=AfbOuChvF34fGg9sHc4d7703RnflNNEDw-ksrlgkRmao1MBYGbrLl1md5TXyEakGpAI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Laricchia,,2019-05-18,,,/profile.php?id=100011228342885&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=820&av=100013534782121&eav=AfbOuChvF34fGg9sHc4d7703RnflNNEDw-ksrlgkRmao1MBYGbrLl1md5TXyEakGpAI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Laricchia,,2019-05-18,,,/profile.php?id=100011228342885&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=820&av=100013534782121&eav=AfbOuChvF34fGg9sHc4d7703RnflNNEDw-ksrlgkRmao1MBYGbrLl1md5TXyEakGpAI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Perricone,,2019-05-18,,,/maria.perricone.142?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=820&av=100013534782121&eav=AfbOuChvF34fGg9sHc4d7703RnflNNEDw-ksrlgkRmao1MBYGbrLl1md5TXyEakGpAI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lia Lo Verso,,2019-05-18,,,/lia.loverso.31?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=820&av=100013534782121&eav=AfbOuChvF34fGg9sHc4d7703RnflNNEDw-ksrlgkRmao1MBYGbrLl1md5TXyEakGpAI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lia Lo Verso,,2019-05-18,,,/lia.loverso.31?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=820&av=100013534782121&eav=AfbOuChvF34fGg9sHc4d7703RnflNNEDw-ksrlgkRmao1MBYGbrLl1md5TXyEakGpAI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lia Lo Verso,,2019-05-18,,,/lia.loverso.31?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=820&av=100013534782121&eav=AfbOuChvF34fGg9sHc4d7703RnflNNEDw-ksrlgkRmao1MBYGbrLl1md5TXyEakGpAI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lia Lo Verso,,2019-05-18,,,/lia.loverso.31?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=820&av=100013534782121&eav=AfbOuChvF34fGg9sHc4d7703RnflNNEDw-ksrlgkRmao1MBYGbrLl1md5TXyEakGpAI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lia Lo Verso,,2019-05-18,,,/lia.loverso.31?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=820&av=100013534782121&eav=AfbOuChvF34fGg9sHc4d7703RnflNNEDw-ksrlgkRmao1MBYGbrLl1md5TXyEakGpAI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Fontana,ROOT,2019-05-18,3,Forse sto giro si cambia...o almeno ci proviamo🤗...forza Lega,/andrea.fontana.319247?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265830733670056&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCkfJMrrAD9Quf5&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annita Terruli,Andrea Fontana,2019-05-18,,Andrea Fontana la Lega a gia fregato lasciamo il posto a chi nn lo a mai fatto,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265830733670056&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCkfJMrrAD9Quf5&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Andrea Fontana,Andrea Fontana,2019-05-18,,Grazie per avermi risposto.. Prendo atto del suo commento .Le auguro buona serata.,/andrea.fontana.319247?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265830733670056&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCkfJMrrAD9Quf5&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marina Iacoella,,2019-05-18,,,/marina.iacoella?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=830&av=100013534782121&eav=AfY68k_CF0rawO_cXKmbZYsADUUsVvUiv9uXMBQQ6tbTxDjcUC1ia5XX3XnHsqUJzhQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Zandon,,2019-05-18,2,Bravo Salvini ti vogliamo così come sei💚💚💚,/angela.zandon?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=830&av=100013534782121&eav=AfY68k_CF0rawO_cXKmbZYsADUUsVvUiv9uXMBQQ6tbTxDjcUC1ia5XX3XnHsqUJzhQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Maria Atzori,,2019-05-18,,,/giovannamaria.atzori?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=830&av=100013534782121&eav=AfY68k_CF0rawO_cXKmbZYsADUUsVvUiv9uXMBQQ6tbTxDjcUC1ia5XX3XnHsqUJzhQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Maria Atzori,,2019-05-18,,,/giovannamaria.atzori?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=830&av=100013534782121&eav=AfY68k_CF0rawO_cXKmbZYsADUUsVvUiv9uXMBQQ6tbTxDjcUC1ia5XX3XnHsqUJzhQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Soncino,,2019-05-18,,,/anna.soncino?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=830&av=100013534782121&eav=AfY68k_CF0rawO_cXKmbZYsADUUsVvUiv9uXMBQQ6tbTxDjcUC1ia5XX3XnHsqUJzhQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vittorio Maniaci,,2019-05-18,,,/vittorio.maniaci?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=830&av=100013534782121&eav=AfY68k_CF0rawO_cXKmbZYsADUUsVvUiv9uXMBQQ6tbTxDjcUC1ia5XX3XnHsqUJzhQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vittorio Maniaci,,2019-05-18,,,/vittorio.maniaci?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=830&av=100013534782121&eav=AfY68k_CF0rawO_cXKmbZYsADUUsVvUiv9uXMBQQ6tbTxDjcUC1ia5XX3XnHsqUJzhQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Di Costanzo Giorgia,,2019-05-18,,,/giorgia.ladese?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=830&av=100013534782121&eav=AfY68k_CF0rawO_cXKmbZYsADUUsVvUiv9uXMBQQ6tbTxDjcUC1ia5XX3XnHsqUJzhQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Di Costanzo Giorgia,,2019-05-18,,,/giorgia.ladese?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=830&av=100013534782121&eav=AfY68k_CF0rawO_cXKmbZYsADUUsVvUiv9uXMBQQ6tbTxDjcUC1ia5XX3XnHsqUJzhQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Di Costanzo Giorgia,,2019-05-18,,,/giorgia.ladese?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=830&av=100013534782121&eav=AfY68k_CF0rawO_cXKmbZYsADUUsVvUiv9uXMBQQ6tbTxDjcUC1ia5XX3XnHsqUJzhQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Diego Ventuno,,2019-05-18,3,"Alla faccia di mentana e saviano, rigorosamente con le minuscole i giudei",/profile.php?id=100021979129698&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=460&av=100013534782121&eav=AfYbHl7gNEQ8wymTd3y9f6xK4c6svHk4dJ0NjUQbTdZsu2myv0vYPs83zyl5hkhINFM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lina Cattaneo,,2019-05-18,4,Bravissimo Grandissimo Matteo😘,/profile.php?id=100007458017349&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=460&av=100013534782121&eav=AfYbHl7gNEQ8wymTd3y9f6xK4c6svHk4dJ0NjUQbTdZsu2myv0vYPs83zyl5hkhINFM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Valentina Nicolao,,2019-05-18,3,Ma zorro l'hai salutato?,/valentina.nicolao.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=460&av=100013534782121&eav=AfYbHl7gNEQ8wymTd3y9f6xK4c6svHk4dJ0NjUQbTdZsu2myv0vYPs83zyl5hkhINFM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cesare Cardoni,,2019-05-18,3,Benone vai Capitano,/cesare.cardoni.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=460&av=100013534782121&eav=AfYbHl7gNEQ8wymTd3y9f6xK4c6svHk4dJ0NjUQbTdZsu2myv0vYPs83zyl5hkhINFM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paolo Malench,,2019-05-18,3,Pd e buonisti ..? Solo dai balconi potete manifestare...😂😂😂,/paolo.malench?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=460&av=100013534782121&eav=AfYbHl7gNEQ8wymTd3y9f6xK4c6svHk4dJ0NjUQbTdZsu2myv0vYPs83zyl5hkhINFM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Bonanni,,2019-05-18,3,Un giorno indimenticabile,/profile.php?id=100007814532312&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=460&av=100013534782121&eav=AfYbHl7gNEQ8wymTd3y9f6xK4c6svHk4dJ0NjUQbTdZsu2myv0vYPs83zyl5hkhINFM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ivana Ghilotti,,2019-05-18,3,Grande capitano 👏👏👏👏👏,/ivana.ghilotti?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=460&av=100013534782121&eav=AfYbHl7gNEQ8wymTd3y9f6xK4c6svHk4dJ0NjUQbTdZsu2myv0vYPs83zyl5hkhINFM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mimma Sorrenti,,2019-05-18,3,Grande Matteo ci hai fatto emozionare fieri di essere con te,/mimma.sorrenti.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=460&av=100013534782121&eav=AfYbHl7gNEQ8wymTd3y9f6xK4c6svHk4dJ0NjUQbTdZsu2myv0vYPs83zyl5hkhINFM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Abelini,,2019-05-18,3,Io c'ero sei grande il 26 maggio voto lega,/giuseppe.abelini.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=460&av=100013534782121&eav=AfYbHl7gNEQ8wymTd3y9f6xK4c6svHk4dJ0NjUQbTdZsu2myv0vYPs83zyl5hkhINFM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vincenzo Tortora,,2019-05-18,,,/vincenzo.tortora.77?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=840&av=100013534782121&eav=Afa6eOrcIBX1d5efM0wx3n41FMZWNhKObmAKJ00oDW3_sagH8dxzfyZvlGGwZId-R4U&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Peroni,,2019-05-18,,,/peroni.elena?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=840&av=100013534782121&eav=Afa6eOrcIBX1d5efM0wx3n41FMZWNhKObmAKJ00oDW3_sagH8dxzfyZvlGGwZId-R4U&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Peroni,,2019-05-18,,,/peroni.elena?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=840&av=100013534782121&eav=Afa6eOrcIBX1d5efM0wx3n41FMZWNhKObmAKJ00oDW3_sagH8dxzfyZvlGGwZId-R4U&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luna la Grifoncina,,2019-05-18,,,/liliana.micciche.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=840&av=100013534782121&eav=Afa6eOrcIBX1d5efM0wx3n41FMZWNhKObmAKJ00oDW3_sagH8dxzfyZvlGGwZId-R4U&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Marsan,,2019-05-18,,,/patrizia.marsan.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=840&av=100013534782121&eav=Afa6eOrcIBX1d5efM0wx3n41FMZWNhKObmAKJ00oDW3_sagH8dxzfyZvlGGwZId-R4U&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vittorio Maniaci,,2019-05-18,,,/vittorio.maniaci?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=840&av=100013534782121&eav=Afa6eOrcIBX1d5efM0wx3n41FMZWNhKObmAKJ00oDW3_sagH8dxzfyZvlGGwZId-R4U&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vito Andriani,,2019-05-18,,,/profile.php?id=100011418719671&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=840&av=100013534782121&eav=Afa6eOrcIBX1d5efM0wx3n41FMZWNhKObmAKJ00oDW3_sagH8dxzfyZvlGGwZId-R4U&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sasha Cris,,2019-05-18,,,/sasha.cris.90?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=840&av=100013534782121&eav=Afa6eOrcIBX1d5efM0wx3n41FMZWNhKObmAKJ00oDW3_sagH8dxzfyZvlGGwZId-R4U&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Di Gennaro,,2019-05-18,,,/anna.digennaro.9480?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=840&av=100013534782121&eav=Afa6eOrcIBX1d5efM0wx3n41FMZWNhKObmAKJ00oDW3_sagH8dxzfyZvlGGwZId-R4U&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Andreis,,2019-05-18,,,/profile.php?id=100004969397043&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=840&av=100013534782121&eav=Afa6eOrcIBX1d5efM0wx3n41FMZWNhKObmAKJ00oDW3_sagH8dxzfyZvlGGwZId-R4U&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Abelini,,2019-05-18,3,Io c'ero sei grande il 26 maggio voto lega,/giuseppe.abelini.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=470&av=100013534782121&eav=AfaFCfIUobsVLEof4iUi7m_uIZ9dgrofwE4x71VQ76OkmIsZjaw6z1zGlCGAMbylh5Y&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaele Bove,,2019-05-18,3,,/bove.lello?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=470&av=100013534782121&eav=AfaFCfIUobsVLEof4iUi7m_uIZ9dgrofwE4x71VQ76OkmIsZjaw6z1zGlCGAMbylh5Y&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +SunTechnology Produzione Pannelli Fotovoltaici,,2019-05-18,,"Nazi-fascisti, nazionalisti xenofobi razzisti contro le democrazie e la libertà. 🤮🤮🤮🤮🤮🤮🤮🤮🤮",/profile.php?id=100001929736086&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=470&av=100013534782121&eav=AfaFCfIUobsVLEof4iUi7m_uIZ9dgrofwE4x71VQ76OkmIsZjaw6z1zGlCGAMbylh5Y&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Martinello,,2019-05-18,3,speriamo che queste persone votino Salvini domenica,/mariamartinello1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=470&av=100013534782121&eav=AfaFCfIUobsVLEof4iUi7m_uIZ9dgrofwE4x71VQ76OkmIsZjaw6z1zGlCGAMbylh5Y&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandra Gheno,,2019-05-18,2,GRANDE LASCIALI DIRE LASCIALI ROSICARE 5S =PD,/alessandra.gheno.16?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=470&av=100013534782121&eav=AfaFCfIUobsVLEof4iUi7m_uIZ9dgrofwE4x71VQ76OkmIsZjaw6z1zGlCGAMbylh5Y&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lijo Gotje Ross,,2019-05-18,4,DI MAIO SE LA SOGNA UNA PIAZZA DEL GENERE 💙💙💙💙💙💙💙💙💙,/giulia.salmaso.39?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=470&av=100013534782121&eav=AfaFCfIUobsVLEof4iUi7m_uIZ9dgrofwE4x71VQ76OkmIsZjaw6z1zGlCGAMbylh5Y&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liberina Ziri,,2019-05-18,4,Bravo capitano,/libeziri?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=470&av=100013534782121&eav=AfaFCfIUobsVLEof4iUi7m_uIZ9dgrofwE4x71VQ76OkmIsZjaw6z1zGlCGAMbylh5Y&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Jose Filho,,2019-05-18,8,👍,/giuseppe.nobile.5015?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=470&av=100013534782121&eav=AfaFCfIUobsVLEof4iUi7m_uIZ9dgrofwE4x71VQ76OkmIsZjaw6z1zGlCGAMbylh5Y&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Rossi,,2019-05-18,5,Grazie Matteo sei il migliore,/profile.php?id=100008951073945&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=470&av=100013534782121&eav=AfaFCfIUobsVLEof4iUi7m_uIZ9dgrofwE4x71VQ76OkmIsZjaw6z1zGlCGAMbylh5Y&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudio Frezzati,,2019-05-18,5,"11 capi di stato presenti, gli altri.. non se li sono mai neanche sognati",/claudio.frezzati.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=470&av=100013534782121&eav=AfaFCfIUobsVLEof4iUi7m_uIZ9dgrofwE4x71VQ76OkmIsZjaw6z1zGlCGAMbylh5Y&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Andreis,,2019-05-18,,,/profile.php?id=100004969397043&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=850&av=100013534782121&eav=Afa4Xco3CS3vYOq2mDEyFb9NaicV5xwbFN2RMOWm7DNbqMte5tokEyDCPJbko99cSgE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Debora Bedendo,,2019-05-18,,,/debora.bedendo.161?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=850&av=100013534782121&eav=Afa4Xco3CS3vYOq2mDEyFb9NaicV5xwbFN2RMOWm7DNbqMte5tokEyDCPJbko99cSgE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Aureliana Sinelabe,,2019-05-18,,,/aureliana.sinelabe?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=850&av=100013534782121&eav=Afa4Xco3CS3vYOq2mDEyFb9NaicV5xwbFN2RMOWm7DNbqMte5tokEyDCPJbko99cSgE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Andreis,,2019-05-18,,,/profile.php?id=100004969397043&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=850&av=100013534782121&eav=Afa4Xco3CS3vYOq2mDEyFb9NaicV5xwbFN2RMOWm7DNbqMte5tokEyDCPJbko99cSgE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Andreis,,2019-05-18,,,/profile.php?id=100004969397043&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=850&av=100013534782121&eav=Afa4Xco3CS3vYOq2mDEyFb9NaicV5xwbFN2RMOWm7DNbqMte5tokEyDCPJbko99cSgE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loreta Prenz,,2019-05-18,2,Porti chiusi,/loreta.prenz?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=850&av=100013534782121&eav=Afa4Xco3CS3vYOq2mDEyFb9NaicV5xwbFN2RMOWm7DNbqMte5tokEyDCPJbko99cSgE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Caterina Acquas,,2019-05-18,,,/caterina.acquas?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=850&av=100013534782121&eav=Afa4Xco3CS3vYOq2mDEyFb9NaicV5xwbFN2RMOWm7DNbqMte5tokEyDCPJbko99cSgE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Esmeralda Esmy Rossi,,2019-05-18,,,/esmeralda.e.rossi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=850&av=100013534782121&eav=Afa4Xco3CS3vYOq2mDEyFb9NaicV5xwbFN2RMOWm7DNbqMte5tokEyDCPJbko99cSgE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Pierantozzi,,2019-05-18,,,/gabriella.pierantozzi.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=850&av=100013534782121&eav=Afa4Xco3CS3vYOq2mDEyFb9NaicV5xwbFN2RMOWm7DNbqMte5tokEyDCPJbko99cSgE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Pierantozzi,,2019-05-18,,,/gabriella.pierantozzi.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=850&av=100013534782121&eav=Afa4Xco3CS3vYOq2mDEyFb9NaicV5xwbFN2RMOWm7DNbqMte5tokEyDCPJbko99cSgE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Pierantozzi,,2019-05-18,,,/gabriella.pierantozzi.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=860&av=100013534782121&eav=AfbOrgkqwDb0Y6bxSiJuQucQFo5q4sZ5vlDjqsiGC7Bv4WDBYeoEf4_6N3bOXZTyYkA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Pierantozzi,,2019-05-18,,,/gabriella.pierantozzi.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=860&av=100013534782121&eav=AfbOrgkqwDb0Y6bxSiJuQucQFo5q4sZ5vlDjqsiGC7Bv4WDBYeoEf4_6N3bOXZTyYkA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Pierantozzi,,2019-05-18,,,/gabriella.pierantozzi.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=860&av=100013534782121&eav=AfbOrgkqwDb0Y6bxSiJuQucQFo5q4sZ5vlDjqsiGC7Bv4WDBYeoEf4_6N3bOXZTyYkA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Loru,,2019-05-18,,,/laura.loru.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=860&av=100013534782121&eav=AfbOrgkqwDb0Y6bxSiJuQucQFo5q4sZ5vlDjqsiGC7Bv4WDBYeoEf4_6N3bOXZTyYkA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristiano Sartori,,2019-05-18,,I SELFIE 🤳,/cristiano.sartori.5095?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=860&av=100013534782121&eav=AfbOrgkqwDb0Y6bxSiJuQucQFo5q4sZ5vlDjqsiGC7Bv4WDBYeoEf4_6N3bOXZTyYkA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Concetta Magri',,2019-05-18,,,/concetta.magri.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=860&av=100013534782121&eav=AfbOrgkqwDb0Y6bxSiJuQucQFo5q4sZ5vlDjqsiGC7Bv4WDBYeoEf4_6N3bOXZTyYkA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giusy Barca,,2019-05-18,,,/Giusi.barca5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=860&av=100013534782121&eav=AfbOrgkqwDb0Y6bxSiJuQucQFo5q4sZ5vlDjqsiGC7Bv4WDBYeoEf4_6N3bOXZTyYkA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giusy Barca,,2019-05-18,,,/Giusi.barca5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=860&av=100013534782121&eav=AfbOrgkqwDb0Y6bxSiJuQucQFo5q4sZ5vlDjqsiGC7Bv4WDBYeoEf4_6N3bOXZTyYkA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emilio Cominotti,,2019-05-18,,,/emilio.cominotti.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=860&av=100013534782121&eav=AfbOrgkqwDb0Y6bxSiJuQucQFo5q4sZ5vlDjqsiGC7Bv4WDBYeoEf4_6N3bOXZTyYkA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emilio Cominotti,,2019-05-18,,,/emilio.cominotti.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=860&av=100013534782121&eav=AfbOrgkqwDb0Y6bxSiJuQucQFo5q4sZ5vlDjqsiGC7Bv4WDBYeoEf4_6N3bOXZTyYkA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Piccione Pizzo,ROOT,2019-05-18,3,,/impresa.edilpiccione?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301902914032188&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD5vdygHq23JgdY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luigi Sensi,Giuseppe Piccione Pizzo,2019-05-18,,"Giuseppe Piccione Pizzo vomita fin che puoi,presto ti verrà la diarrea",/sapori.disanvalentino.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301902914032188&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD5vdygHq23JgdY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosaria Merola,Giuseppe Piccione Pizzo,2019-05-18,,Giuseppe Piccione Pizzo MALOX. BRUTTA COSA LA GASTRITE..MALOX,/rosaria.merola.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301902914032188&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD5vdygHq23JgdY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Piccione Pizzo,Giuseppe Piccione Pizzo,2019-05-18,,Luigi Sensi si vota salvini quello che si allea con quelli che non vogliono campare. Salvini e in politica da 25 anni e ora pensi che campi Sveziaaaaaaaa,/impresa.edilpiccione?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301902914032188&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD5vdygHq23JgdY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Piccione Pizzo,Giuseppe Piccione Pizzo,2019-05-18,,Guardatevi la storia di salvini cosa diceva tutto il contrario,/impresa.edilpiccione?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301902914032188&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD5vdygHq23JgdY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,Giuseppe Piccione Pizzo,2019-05-18,,Giuseppe Piccione Pizzo,/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301902914032188&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD5vdygHq23JgdY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Piccione Pizzo,Giuseppe Piccione Pizzo,2019-05-18,,Luigi Sensi suca,/impresa.edilpiccione?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301902914032188&count=6&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD5vdygHq23JgdY&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Susy Andersen,,2019-05-18,,,/susy.andersen.336?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=870&av=100013534782121&eav=Afb20kfLylaBR9MZMyJmgkRXVGEGtT-sPLF2CLn9-OVaYsRZofGfaVZMsHzUTxTWgaQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Susy Andersen,,2019-05-18,,,/susy.andersen.336?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=870&av=100013534782121&eav=Afb20kfLylaBR9MZMyJmgkRXVGEGtT-sPLF2CLn9-OVaYsRZofGfaVZMsHzUTxTWgaQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Susy Andersen,,2019-05-18,,,/susy.andersen.336?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=870&av=100013534782121&eav=Afb20kfLylaBR9MZMyJmgkRXVGEGtT-sPLF2CLn9-OVaYsRZofGfaVZMsHzUTxTWgaQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Susy Andersen,,2019-05-18,,,/susy.andersen.336?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=870&av=100013534782121&eav=Afb20kfLylaBR9MZMyJmgkRXVGEGtT-sPLF2CLn9-OVaYsRZofGfaVZMsHzUTxTWgaQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Santina Leporace,,2019-05-18,,,/profile.php?id=100004658206121&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=870&av=100013534782121&eav=Afb20kfLylaBR9MZMyJmgkRXVGEGtT-sPLF2CLn9-OVaYsRZofGfaVZMsHzUTxTWgaQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mafalda Marchina,,2019-05-18,,,/mafalda.marchina.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=870&av=100013534782121&eav=Afb20kfLylaBR9MZMyJmgkRXVGEGtT-sPLF2CLn9-OVaYsRZofGfaVZMsHzUTxTWgaQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mafalda Marchina,,2019-05-18,,,/mafalda.marchina.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=870&av=100013534782121&eav=Afb20kfLylaBR9MZMyJmgkRXVGEGtT-sPLF2CLn9-OVaYsRZofGfaVZMsHzUTxTWgaQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mafalda Marchina,,2019-05-18,,,/mafalda.marchina.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=870&av=100013534782121&eav=Afb20kfLylaBR9MZMyJmgkRXVGEGtT-sPLF2CLn9-OVaYsRZofGfaVZMsHzUTxTWgaQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +DV Nina,,2019-05-18,,,/jonainah.oliver?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=870&av=100013534782121&eav=Afb20kfLylaBR9MZMyJmgkRXVGEGtT-sPLF2CLn9-OVaYsRZofGfaVZMsHzUTxTWgaQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Josephine La Roche,,2019-05-18,,,/josephine.laroche.313?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=870&av=100013534782121&eav=Afb20kfLylaBR9MZMyJmgkRXVGEGtT-sPLF2CLn9-OVaYsRZofGfaVZMsHzUTxTWgaQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Josephine La Roche,,2019-05-18,,,/josephine.laroche.313?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=880&av=100013534782121&eav=AfYlGwUINdlSdRJBISpBzxbyYQsxt8tkcgOlGajxeEs666MB0S9f0pX08g6wf4hx5eg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Josephine La Roche,,2019-05-18,,,/josephine.laroche.313?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=880&av=100013534782121&eav=AfYlGwUINdlSdRJBISpBzxbyYQsxt8tkcgOlGajxeEs666MB0S9f0pX08g6wf4hx5eg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Josephine La Roche,,2019-05-18,,,/josephine.laroche.313?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=880&av=100013534782121&eav=AfYlGwUINdlSdRJBISpBzxbyYQsxt8tkcgOlGajxeEs666MB0S9f0pX08g6wf4hx5eg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Josephine La Roche,,2019-05-18,,,/josephine.laroche.313?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=880&av=100013534782121&eav=AfYlGwUINdlSdRJBISpBzxbyYQsxt8tkcgOlGajxeEs666MB0S9f0pX08g6wf4hx5eg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Josephine La Roche,,2019-05-18,,,/josephine.laroche.313?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=880&av=100013534782121&eav=AfYlGwUINdlSdRJBISpBzxbyYQsxt8tkcgOlGajxeEs666MB0S9f0pX08g6wf4hx5eg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marinella Caria,,2019-05-18,,,/marinella.caria.54?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=880&av=100013534782121&eav=AfYlGwUINdlSdRJBISpBzxbyYQsxt8tkcgOlGajxeEs666MB0S9f0pX08g6wf4hx5eg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Romeo Assunta,,2019-05-18,,,/assunta.romeo.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=880&av=100013534782121&eav=AfYlGwUINdlSdRJBISpBzxbyYQsxt8tkcgOlGajxeEs666MB0S9f0pX08g6wf4hx5eg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Romeo Assunta,,2019-05-18,,,/assunta.romeo.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=880&av=100013534782121&eav=AfYlGwUINdlSdRJBISpBzxbyYQsxt8tkcgOlGajxeEs666MB0S9f0pX08g6wf4hx5eg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Vasilovici,,2019-05-18,,,/maria.vasilovici.376?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=880&av=100013534782121&eav=AfYlGwUINdlSdRJBISpBzxbyYQsxt8tkcgOlGajxeEs666MB0S9f0pX08g6wf4hx5eg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniel Sponto,,2019-05-18,,,/denny.spontini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=880&av=100013534782121&eav=AfYlGwUINdlSdRJBISpBzxbyYQsxt8tkcgOlGajxeEs666MB0S9f0pX08g6wf4hx5eg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Piccione Pizzo,ROOT,2019-05-18,3,,/impresa.edilpiccione?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265827440337052&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDzS3Votz8Bt3Fm&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alisa Fiore,Giuseppe Piccione Pizzo,2019-05-18,,Giuseppe Piccione Pizzo ROSICA,/alisa.fiore.54?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265827440337052&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDzS3Votz8Bt3Fm&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Piccione Pizzo,Giuseppe Piccione Pizzo,2019-05-18,,Alisa Fiore scegliati,/impresa.edilpiccione?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265827440337052&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDzS3Votz8Bt3Fm&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luigi Bonanno,Giuseppe Piccione Pizzo,2019-05-18,,La stessa folla di quando parla Zingaretti.ahahhah,/luigi.bonanno.144?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265827440337052&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDzS3Votz8Bt3Fm&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Perillo,,2019-05-18,,,/patrizia.perillo.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=890&av=100013534782121&eav=AfbkVVhdLLKRhpju1BgxaYxpPDqRnPci2x9LJ-Gqo14JayefMYK3aMggvg7KjhS5pzc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Danezli Mohamed,,2019-05-18,,,/danezli.mohamed.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=890&av=100013534782121&eav=AfbkVVhdLLKRhpju1BgxaYxpPDqRnPci2x9LJ-Gqo14JayefMYK3aMggvg7KjhS5pzc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Titti Cervone de Martino,,2019-05-18,,,/titti.c.demartino?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=890&av=100013534782121&eav=AfbkVVhdLLKRhpju1BgxaYxpPDqRnPci2x9LJ-Gqo14JayefMYK3aMggvg7KjhS5pzc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Titti Cervone de Martino,,2019-05-18,,,/titti.c.demartino?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=890&av=100013534782121&eav=AfbkVVhdLLKRhpju1BgxaYxpPDqRnPci2x9LJ-Gqo14JayefMYK3aMggvg7KjhS5pzc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucera Maria,,2019-05-18,,,/lucera.maria.77?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=890&av=100013534782121&eav=AfbkVVhdLLKRhpju1BgxaYxpPDqRnPci2x9LJ-Gqo14JayefMYK3aMggvg7KjhS5pzc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Simona Romani,,2019-05-18,,,/simona.romani.7549?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=890&av=100013534782121&eav=AfbkVVhdLLKRhpju1BgxaYxpPDqRnPci2x9LJ-Gqo14JayefMYK3aMggvg7KjhS5pzc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucera Maria,,2019-05-18,,,/lucera.maria.77?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=890&av=100013534782121&eav=AfbkVVhdLLKRhpju1BgxaYxpPDqRnPci2x9LJ-Gqo14JayefMYK3aMggvg7KjhS5pzc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucera Maria,,2019-05-18,1,,/lucera.maria.77?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=890&av=100013534782121&eav=AfbkVVhdLLKRhpju1BgxaYxpPDqRnPci2x9LJ-Gqo14JayefMYK3aMggvg7KjhS5pzc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patty Ravaioli,,2019-05-18,,Ti vogliamo bene ♥️♥️♥️♥️♥️sempre con te fino alla morte 😍😍😍😍😍😍😍,/patty.ravaioli?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=890&av=100013534782121&eav=AfbkVVhdLLKRhpju1BgxaYxpPDqRnPci2x9LJ-Gqo14JayefMYK3aMggvg7KjhS5pzc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Liguori,,2019-05-18,,,/anna.liguori.10?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=890&av=100013534782121&eav=AfbkVVhdLLKRhpju1BgxaYxpPDqRnPci2x9LJ-Gqo14JayefMYK3aMggvg7KjhS5pzc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Piccione Pizzo,,2019-05-18,3,,/impresa.edilpiccione?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=480&av=100013534782121&eav=AfaDV0c9Aa9w4cgS1F0_oQiUXxQQX9lY_yk-mkjHcQfwbpy_8kB35-vtbdbQZ4EHOzM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vin Can,,2019-05-18,2,Evviva bravo il nostro capitano,/vin.can.1217?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=480&av=100013534782121&eav=AfaDV0c9Aa9w4cgS1F0_oQiUXxQQX9lY_yk-mkjHcQfwbpy_8kB35-vtbdbQZ4EHOzM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelo D'Avico,,2019-05-18,4,,/angelo.davico.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=480&av=100013534782121&eav=AfaDV0c9Aa9w4cgS1F0_oQiUXxQQX9lY_yk-mkjHcQfwbpy_8kB35-vtbdbQZ4EHOzM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lo Vullo Gaetano,,2019-05-18,3,,/lo.v.gaetano?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=480&av=100013534782121&eav=AfaDV0c9Aa9w4cgS1F0_oQiUXxQQX9lY_yk-mkjHcQfwbpy_8kB35-vtbdbQZ4EHOzM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Perillo,,2019-05-18,2,,/patrizia.perillo.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=480&av=100013534782121&eav=AfaDV0c9Aa9w4cgS1F0_oQiUXxQQX9lY_yk-mkjHcQfwbpy_8kB35-vtbdbQZ4EHOzM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Garofalo,,2019-05-18,2,,/anita.o121?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=480&av=100013534782121&eav=AfaDV0c9Aa9w4cgS1F0_oQiUXxQQX9lY_yk-mkjHcQfwbpy_8kB35-vtbdbQZ4EHOzM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Adriana Turrini,,2019-05-18,2,,/adriana.turrini.54?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=480&av=100013534782121&eav=AfaDV0c9Aa9w4cgS1F0_oQiUXxQQX9lY_yk-mkjHcQfwbpy_8kB35-vtbdbQZ4EHOzM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cinzia Gro,,2019-05-18,2,povera sinistra! i vostri consunti lenzuoli vi torneranno utili giusto giusto per asciugarvi le lacrime,/profile.php?id=100009442750860&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=480&av=100013534782121&eav=AfaDV0c9Aa9w4cgS1F0_oQiUXxQQX9lY_yk-mkjHcQfwbpy_8kB35-vtbdbQZ4EHOzM&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Burgio,,2019-05-18,,,/laura.burgio.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=900&av=100013534782121&eav=AfaU-zT28We5IUfb0PDUHmwOCyW9FS-46WlU3tfHxH5t3shg9rKevfNAVMIA7ZXax6E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lisa Pannunzi,,2019-05-18,,,/lisa.pannunzi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=900&av=100013534782121&eav=AfaU-zT28We5IUfb0PDUHmwOCyW9FS-46WlU3tfHxH5t3shg9rKevfNAVMIA7ZXax6E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Teresa Cassese,,2019-05-18,,,/maria.t.cassese?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=900&av=100013534782121&eav=AfaU-zT28We5IUfb0PDUHmwOCyW9FS-46WlU3tfHxH5t3shg9rKevfNAVMIA7ZXax6E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ursula Bianchi,,2019-05-18,,,/ursula.bianchi.792?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=900&av=100013534782121&eav=AfaU-zT28We5IUfb0PDUHmwOCyW9FS-46WlU3tfHxH5t3shg9rKevfNAVMIA7ZXax6E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Naomi Grimaldi,,2019-05-18,,,/naomi.grimaldi.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=900&av=100013534782121&eav=AfaU-zT28We5IUfb0PDUHmwOCyW9FS-46WlU3tfHxH5t3shg9rKevfNAVMIA7ZXax6E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Naomi Grimaldi,,2019-05-18,,,/naomi.grimaldi.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=900&av=100013534782121&eav=AfaU-zT28We5IUfb0PDUHmwOCyW9FS-46WlU3tfHxH5t3shg9rKevfNAVMIA7ZXax6E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Victor Pinaussi - Vos,,2019-05-18,,,/profile.php?id=100006461050778&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=900&av=100013534782121&eav=AfaU-zT28We5IUfb0PDUHmwOCyW9FS-46WlU3tfHxH5t3shg9rKevfNAVMIA7ZXax6E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Scarfi,,2019-05-18,2,Forza Matteo !!!!!! Non mollareeeeeeeee,/maurizio.scarfi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=900&av=100013534782121&eav=AfaU-zT28We5IUfb0PDUHmwOCyW9FS-46WlU3tfHxH5t3shg9rKevfNAVMIA7ZXax6E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Aquilina Lettieri,,2019-05-18,,,/moselina.scavello?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=900&av=100013534782121&eav=AfaU-zT28We5IUfb0PDUHmwOCyW9FS-46WlU3tfHxH5t3shg9rKevfNAVMIA7ZXax6E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Clara Zini,,2019-05-18,,,/profile.php?id=100004872498467&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=900&av=100013534782121&eav=AfaU-zT28We5IUfb0PDUHmwOCyW9FS-46WlU3tfHxH5t3shg9rKevfNAVMIA7ZXax6E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luca Agatina,,2019-05-18,,,/luca.agatina?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=910&av=100013534782121&eav=AfYn-IWmcrhLhwY-Iq6U3TLqUGTYDvxGX0Kw1-LC7esQ-6vIvz8X-ifa_vXRV3nShAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gigi Fois,,2019-05-18,1,,/gigi.fois.77?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=910&av=100013534782121&eav=AfYn-IWmcrhLhwY-Iq6U3TLqUGTYDvxGX0Kw1-LC7esQ-6vIvz8X-ifa_vXRV3nShAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Benny Torino,,2019-05-18,2,L'unico politico che sta in mezzo alla gente,/benny.torino.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=910&av=100013534782121&eav=AfYn-IWmcrhLhwY-Iq6U3TLqUGTYDvxGX0Kw1-LC7esQ-6vIvz8X-ifa_vXRV3nShAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Diana Pana,,2019-05-18,,,/profile.php?id=100010593698996&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=910&av=100013534782121&eav=AfYn-IWmcrhLhwY-Iq6U3TLqUGTYDvxGX0Kw1-LC7esQ-6vIvz8X-ifa_vXRV3nShAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Diana Pana,,2019-05-18,,,/profile.php?id=100010593698996&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=910&av=100013534782121&eav=AfYn-IWmcrhLhwY-Iq6U3TLqUGTYDvxGX0Kw1-LC7esQ-6vIvz8X-ifa_vXRV3nShAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Cedroni Palombo,,2019-05-18,1,,/valentino.palombo.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=910&av=100013534782121&eav=AfYn-IWmcrhLhwY-Iq6U3TLqUGTYDvxGX0Kw1-LC7esQ-6vIvz8X-ifa_vXRV3nShAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Cancellieri,,2019-05-18,,Vuole andare avanti con il governo e parlano solo male di te,/silvana.cancellieri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=910&av=100013534782121&eav=AfYn-IWmcrhLhwY-Iq6U3TLqUGTYDvxGX0Kw1-LC7esQ-6vIvz8X-ifa_vXRV3nShAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Cammarota,,2019-05-18,,,/silvana.cammarota?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=910&av=100013534782121&eav=AfYn-IWmcrhLhwY-Iq6U3TLqUGTYDvxGX0Kw1-LC7esQ-6vIvz8X-ifa_vXRV3nShAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elisabetta Cimone,,2019-05-18,,,/elisabetta.cimone?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=910&av=100013534782121&eav=AfYn-IWmcrhLhwY-Iq6U3TLqUGTYDvxGX0Kw1-LC7esQ-6vIvz8X-ifa_vXRV3nShAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Erina Catalano,,2019-05-18,,,/erina.catalano.56?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=910&av=100013534782121&eav=AfYn-IWmcrhLhwY-Iq6U3TLqUGTYDvxGX0Kw1-LC7esQ-6vIvz8X-ifa_vXRV3nShAw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gino Liburdi,ROOT,2019-05-18,3,Ma che e' arrivato il papa?,/gino.liburdi?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301915520697594&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCmow5z_3VXGNNt&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Brigida Virgili,Gino Liburdi,2019-05-18,1,Gino Liburdi se fosse arrivato il Papa la piazza non sarebbe stata così piena.,/profile.php?id=100009742724883&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301915520697594&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCmow5z_3VXGNNt&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Donatella Boscolo,,2019-05-18,1,,/donatella.boscolo.50?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=920&av=100013534782121&eav=AfZErITqkvK8FI6jGPcks-m09xylgQYXNsG1HeTOzsi2iLCNlSzMr5wmVqo4t2dFncc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorenza Brombal,,2019-05-18,,,/lorenza.brombal?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=920&av=100013534782121&eav=AfZErITqkvK8FI6jGPcks-m09xylgQYXNsG1HeTOzsi2iLCNlSzMr5wmVqo4t2dFncc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Serrau,,2019-05-18,,,/profile.php?id=100013239524588&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=920&av=100013534782121&eav=AfZErITqkvK8FI6jGPcks-m09xylgQYXNsG1HeTOzsi2iLCNlSzMr5wmVqo4t2dFncc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Engy Delpa,,2019-05-18,,,/engy.delpa?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=920&av=100013534782121&eav=AfZErITqkvK8FI6jGPcks-m09xylgQYXNsG1HeTOzsi2iLCNlSzMr5wmVqo4t2dFncc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ann Catrine Nilsson,,2019-05-18,,,/anncatrine.nilsson.12?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=920&av=100013534782121&eav=AfZErITqkvK8FI6jGPcks-m09xylgQYXNsG1HeTOzsi2iLCNlSzMr5wmVqo4t2dFncc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cosimo DI Fonzo,,2019-05-18,,Sei un Grande nessuno come Te.e Tu l hai regalata a Noi una giornata indimenticabile.,/mimmo.difonzo.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=920&av=100013534782121&eav=AfZErITqkvK8FI6jGPcks-m09xylgQYXNsG1HeTOzsi2iLCNlSzMr5wmVqo4t2dFncc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Serrau,,2019-05-18,,,/profile.php?id=100013239524588&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=920&av=100013534782121&eav=AfZErITqkvK8FI6jGPcks-m09xylgQYXNsG1HeTOzsi2iLCNlSzMr5wmVqo4t2dFncc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Serrau,,2019-05-18,,,/profile.php?id=100013239524588&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=920&av=100013534782121&eav=AfZErITqkvK8FI6jGPcks-m09xylgQYXNsG1HeTOzsi2iLCNlSzMr5wmVqo4t2dFncc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Serrau,,2019-05-18,,,/profile.php?id=100013239524588&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=920&av=100013534782121&eav=AfZErITqkvK8FI6jGPcks-m09xylgQYXNsG1HeTOzsi2iLCNlSzMr5wmVqo4t2dFncc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ascanio Pastorini,,2019-05-18,,,/profile.php?id=100011399262505&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=920&av=100013534782121&eav=AfZErITqkvK8FI6jGPcks-m09xylgQYXNsG1HeTOzsi2iLCNlSzMr5wmVqo4t2dFncc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosalia Piazza,,2019-05-18,,,/profile.php?id=100004909158223&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=930&av=100013534782121&eav=AfaTop5jASqRXojEvP6vEsWcxJp34RHrrwsYivE7LefQpxNIYHYdI4EoUcK5TvZcWus&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosalia Piazza,,2019-05-18,,,/profile.php?id=100004909158223&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=930&av=100013534782121&eav=AfaTop5jASqRXojEvP6vEsWcxJp34RHrrwsYivE7LefQpxNIYHYdI4EoUcK5TvZcWus&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Flora Ninnina Floris,,2019-05-18,,,/flora.floris.735?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=930&av=100013534782121&eav=AfaTop5jASqRXojEvP6vEsWcxJp34RHrrwsYivE7LefQpxNIYHYdI4EoUcK5TvZcWus&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mária Birinyi,,2019-05-18,1,,/maria.birinyi.96?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=930&av=100013534782121&eav=AfaTop5jASqRXojEvP6vEsWcxJp34RHrrwsYivE7LefQpxNIYHYdI4EoUcK5TvZcWus&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorena Paladini,,2019-05-18,,,/profile.php?id=100010921301857&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=930&av=100013534782121&eav=AfaTop5jASqRXojEvP6vEsWcxJp34RHrrwsYivE7LefQpxNIYHYdI4EoUcK5TvZcWus&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Galeotti,,2019-05-18,,,/profile.php?id=100009014105293&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=930&av=100013534782121&eav=AfaTop5jASqRXojEvP6vEsWcxJp34RHrrwsYivE7LefQpxNIYHYdI4EoUcK5TvZcWus&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Amalia Ciccarelli,,2019-05-18,,,/amalia.ciccarelli.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=930&av=100013534782121&eav=AfaTop5jASqRXojEvP6vEsWcxJp34RHrrwsYivE7LefQpxNIYHYdI4EoUcK5TvZcWus&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Amalia Ciccarelli,,2019-05-18,,,/amalia.ciccarelli.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=930&av=100013534782121&eav=AfaTop5jASqRXojEvP6vEsWcxJp34RHrrwsYivE7LefQpxNIYHYdI4EoUcK5TvZcWus&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Amalia Ciccarelli,,2019-05-18,,,/amalia.ciccarelli.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=930&av=100013534782121&eav=AfaTop5jASqRXojEvP6vEsWcxJp34RHrrwsYivE7LefQpxNIYHYdI4EoUcK5TvZcWus&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Salvatore Congia,,2019-05-18,,,/salvatore.congia.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=930&av=100013534782121&eav=AfaTop5jASqRXojEvP6vEsWcxJp34RHrrwsYivE7LefQpxNIYHYdI4EoUcK5TvZcWus&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elisabetta Zannabianca,ROOT,2019-05-18,2,,/bettizanardelli.mussio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265829850336811&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD0uhcqgNtQ09RU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Frida Calo,Elisabetta Zannabianca,2019-05-18,1,Elisabetta Zannabianca giusto...come fanno in tanti altri paesi come l'Australia e nessuno si sogna di criticare!!!,/profile.php?id=100013819211157&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265829850336811&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD0uhcqgNtQ09RU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosa Calabrese,,2019-05-18,,,/rosa.calabrese.1217?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=940&av=100013534782121&eav=AfbeirgNwpMkxSc8f_P4BUKQcd8VQ6Ik8eSPG0kGQTpvaDb8ty3XkovIHUwidg2zyBs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Calabrese,,2019-05-18,,,/rosa.calabrese.1217?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=940&av=100013534782121&eav=AfbeirgNwpMkxSc8f_P4BUKQcd8VQ6Ik8eSPG0kGQTpvaDb8ty3XkovIHUwidg2zyBs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tiziana DeBartolomeo,,2019-05-18,,,/tiziana.debartolomeo.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=940&av=100013534782121&eav=AfbeirgNwpMkxSc8f_P4BUKQcd8VQ6Ik8eSPG0kGQTpvaDb8ty3XkovIHUwidg2zyBs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Ricci,,2019-05-18,,,/anna.ricci.5851?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=940&av=100013534782121&eav=AfbeirgNwpMkxSc8f_P4BUKQcd8VQ6Ik8eSPG0kGQTpvaDb8ty3XkovIHUwidg2zyBs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ivana Federici,,2019-05-18,,,/profile.php?id=100008722775551&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=940&av=100013534782121&eav=AfbeirgNwpMkxSc8f_P4BUKQcd8VQ6Ik8eSPG0kGQTpvaDb8ty3XkovIHUwidg2zyBs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Hermann Brugger,,2019-05-18,,,/hermann.brugger.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=940&av=100013534782121&eav=AfbeirgNwpMkxSc8f_P4BUKQcd8VQ6Ik8eSPG0kGQTpvaDb8ty3XkovIHUwidg2zyBs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,,,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=940&av=100013534782121&eav=AfbeirgNwpMkxSc8f_P4BUKQcd8VQ6Ik8eSPG0kGQTpvaDb8ty3XkovIHUwidg2zyBs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,,,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=940&av=100013534782121&eav=AfbeirgNwpMkxSc8f_P4BUKQcd8VQ6Ik8eSPG0kGQTpvaDb8ty3XkovIHUwidg2zyBs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mária Birinyi,,2019-05-18,,,/maria.birinyi.96?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=940&av=100013534782121&eav=AfbeirgNwpMkxSc8f_P4BUKQcd8VQ6Ik8eSPG0kGQTpvaDb8ty3XkovIHUwidg2zyBs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mária Birinyi,,2019-05-18,,,/maria.birinyi.96?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=940&av=100013534782121&eav=AfbeirgNwpMkxSc8f_P4BUKQcd8VQ6Ik8eSPG0kGQTpvaDb8ty3XkovIHUwidg2zyBs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Papai,,2019-05-18,3,Un bellissimo DELIRIO.GRAZIE CAPITANO,/maria.papai.96?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=490&av=100013534782121&eav=AfamRbezJPjrVbV7GE3vtl5WJFleJrv3VANQWJhJT-ZpbW6jC1MIsyBuMDrSsUxED10&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Petillo,,2019-05-18,3,Forza Salvini sei grande,/maria.petillo.961?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=490&av=100013534782121&eav=AfamRbezJPjrVbV7GE3vtl5WJFleJrv3VANQWJhJT-ZpbW6jC1MIsyBuMDrSsUxED10&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Massimo Giunta,,2019-05-18,2,"Avanti tutta, Signor Ministro.",/massimo.giunta.77?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=490&av=100013534782121&eav=AfamRbezJPjrVbV7GE3vtl5WJFleJrv3VANQWJhJT-ZpbW6jC1MIsyBuMDrSsUxED10&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudio Spinaci,,2019-05-18,2,Matteo il ministro degli italiani!,/profile.php?id=100009022197681&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=490&av=100013534782121&eav=AfamRbezJPjrVbV7GE3vtl5WJFleJrv3VANQWJhJT-ZpbW6jC1MIsyBuMDrSsUxED10&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudia Ortolan,,2019-05-18,2,,/claudia.ortolan.756?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=490&av=100013534782121&eav=AfamRbezJPjrVbV7GE3vtl5WJFleJrv3VANQWJhJT-ZpbW6jC1MIsyBuMDrSsUxED10&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorella Mariani Zucchi,,2019-05-18,2,Tieni duro capitano!😘,/profile.php?id=100010577710881&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=490&av=100013534782121&eav=AfamRbezJPjrVbV7GE3vtl5WJFleJrv3VANQWJhJT-ZpbW6jC1MIsyBuMDrSsUxED10&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lidia Maschio,,2019-05-18,3,"Che bella gente, che bei colori.",/lidia.maschio?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=490&av=100013534782121&eav=AfamRbezJPjrVbV7GE3vtl5WJFleJrv3VANQWJhJT-ZpbW6jC1MIsyBuMDrSsUxED10&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Renato Invernizzi,,2019-05-18,7,,/profile.php?id=100013084115119&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=490&av=100013534782121&eav=AfamRbezJPjrVbV7GE3vtl5WJFleJrv3VANQWJhJT-ZpbW6jC1MIsyBuMDrSsUxED10&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ewa Goworek,,2019-05-18,,"Io ti guardo ancora,ma però mettiti qualcosa che prendi freddo😰💚💚",/profile.php?id=100013092211261&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=950&av=100013534782121&eav=Afav13n1w-p0lkqGFpwMNxGXvbzdqqBHfs5VeltBZTGQ_MblKkOdobQl75yygBQThDk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,,,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=950&av=100013534782121&eav=Afav13n1w-p0lkqGFpwMNxGXvbzdqqBHfs5VeltBZTGQ_MblKkOdobQl75yygBQThDk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ágnes Karasawa,,2019-05-18,,,/karasawa.agnes?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=950&av=100013534782121&eav=Afav13n1w-p0lkqGFpwMNxGXvbzdqqBHfs5VeltBZTGQ_MblKkOdobQl75yygBQThDk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Brutto,,2019-05-18,,,/profile.php?id=100006135584865&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=950&av=100013534782121&eav=Afav13n1w-p0lkqGFpwMNxGXvbzdqqBHfs5VeltBZTGQ_MblKkOdobQl75yygBQThDk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,1,,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=950&av=100013534782121&eav=Afav13n1w-p0lkqGFpwMNxGXvbzdqqBHfs5VeltBZTGQ_MblKkOdobQl75yygBQThDk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,,,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=950&av=100013534782121&eav=Afav13n1w-p0lkqGFpwMNxGXvbzdqqBHfs5VeltBZTGQ_MblKkOdobQl75yygBQThDk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,,,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=950&av=100013534782121&eav=Afav13n1w-p0lkqGFpwMNxGXvbzdqqBHfs5VeltBZTGQ_MblKkOdobQl75yygBQThDk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,,,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=950&av=100013534782121&eav=Afav13n1w-p0lkqGFpwMNxGXvbzdqqBHfs5VeltBZTGQ_MblKkOdobQl75yygBQThDk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,,,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=950&av=100013534782121&eav=Afav13n1w-p0lkqGFpwMNxGXvbzdqqBHfs5VeltBZTGQ_MblKkOdobQl75yygBQThDk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,,,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=950&av=100013534782121&eav=Afav13n1w-p0lkqGFpwMNxGXvbzdqqBHfs5VeltBZTGQ_MblKkOdobQl75yygBQThDk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rossella Manca,,2019-05-18,,,/rossella.manca3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=960&av=100013534782121&eav=AfZGO2oI9ThRt3ZNYkqXDyUbnuKgWg7tlgRUyAk7H2-Npy6LqAElI-9Sb85Fbs_Wt_E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rossella Manca,,2019-05-18,,,/rossella.manca3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=960&av=100013534782121&eav=AfZGO2oI9ThRt3ZNYkqXDyUbnuKgWg7tlgRUyAk7H2-Npy6LqAElI-9Sb85Fbs_Wt_E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rossella Manca,,2019-05-18,,,/rossella.manca3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=960&av=100013534782121&eav=AfZGO2oI9ThRt3ZNYkqXDyUbnuKgWg7tlgRUyAk7H2-Npy6LqAElI-9Sb85Fbs_Wt_E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rossella Manca,,2019-05-18,,,/rossella.manca3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=960&av=100013534782121&eav=AfZGO2oI9ThRt3ZNYkqXDyUbnuKgWg7tlgRUyAk7H2-Npy6LqAElI-9Sb85Fbs_Wt_E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rossella Manca,,2019-05-18,,,/rossella.manca3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=960&av=100013534782121&eav=AfZGO2oI9ThRt3ZNYkqXDyUbnuKgWg7tlgRUyAk7H2-Npy6LqAElI-9Sb85Fbs_Wt_E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cinzia Beneventi,,2019-05-18,,,/cinzia.beneventi.52?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=960&av=100013534782121&eav=AfZGO2oI9ThRt3ZNYkqXDyUbnuKgWg7tlgRUyAk7H2-Npy6LqAElI-9Sb85Fbs_Wt_E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rossella Manca,,2019-05-18,,,/rossella.manca3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=960&av=100013534782121&eav=AfZGO2oI9ThRt3ZNYkqXDyUbnuKgWg7tlgRUyAk7H2-Npy6LqAElI-9Sb85Fbs_Wt_E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rossella Manca,,2019-05-18,,,/rossella.manca3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=960&av=100013534782121&eav=AfZGO2oI9ThRt3ZNYkqXDyUbnuKgWg7tlgRUyAk7H2-Npy6LqAElI-9Sb85Fbs_Wt_E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ivana Sacchetto,,2019-05-18,,,/ivana.sacchetto.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=960&av=100013534782121&eav=AfZGO2oI9ThRt3ZNYkqXDyUbnuKgWg7tlgRUyAk7H2-Npy6LqAElI-9Sb85Fbs_Wt_E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Barbara Pisapia,,2019-05-18,,,/profile.php?id=100005333835822&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=960&av=100013534782121&eav=AfZGO2oI9ThRt3ZNYkqXDyUbnuKgWg7tlgRUyAk7H2-Npy6LqAElI-9Sb85Fbs_Wt_E&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Birba Adone,ROOT,2019-05-18,2,Perché la TV non ci fa vedere tutto compresa la piazza,/birba.adone?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622530128155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDayGP5UTKUPUXU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Celestina Mastropietro,Birba Adone,2019-05-18,1,Perche' gli brucia u cullllllll,/celestina.mastropietro.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622530128155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDayGP5UTKUPUXU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Birba Adone,Birba Adone,2019-05-18,1,Celestina Mastropietro hai ragione...immaginavo,/birba.adone?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622530128155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDayGP5UTKUPUXU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Barbara Pisapia,,2019-05-18,,,/profile.php?id=100005333835822&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=970&av=100013534782121&eav=AfYDWSKazny1fY8buPjg9bNV8I7ptGgclanXkdSPyRTAXunVJ5QgYoGX2_LBK_UakCU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziella Rocchitelli,,2019-05-18,,,/graziella.rocchitelli?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=970&av=100013534782121&eav=AfYDWSKazny1fY8buPjg9bNV8I7ptGgclanXkdSPyRTAXunVJ5QgYoGX2_LBK_UakCU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziella Rocchitelli,,2019-05-18,,,/graziella.rocchitelli?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=970&av=100013534782121&eav=AfYDWSKazny1fY8buPjg9bNV8I7ptGgclanXkdSPyRTAXunVJ5QgYoGX2_LBK_UakCU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziella Rocchitelli,,2019-05-18,,,/graziella.rocchitelli?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=970&av=100013534782121&eav=AfYDWSKazny1fY8buPjg9bNV8I7ptGgclanXkdSPyRTAXunVJ5QgYoGX2_LBK_UakCU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sandra Speranza,,2019-05-18,,,/sandra.speranza.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=970&av=100013534782121&eav=AfYDWSKazny1fY8buPjg9bNV8I7ptGgclanXkdSPyRTAXunVJ5QgYoGX2_LBK_UakCU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Maria Grassi,,2019-05-18,,,/annamaria.grassi.311?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=970&av=100013534782121&eav=AfYDWSKazny1fY8buPjg9bNV8I7ptGgclanXkdSPyRTAXunVJ5QgYoGX2_LBK_UakCU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pattysolare,,2019-05-18,,,/pattysolare.pattysolare?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=970&av=100013534782121&eav=AfYDWSKazny1fY8buPjg9bNV8I7ptGgclanXkdSPyRTAXunVJ5QgYoGX2_LBK_UakCU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=970&av=100013534782121&eav=AfYDWSKazny1fY8buPjg9bNV8I7ptGgclanXkdSPyRTAXunVJ5QgYoGX2_LBK_UakCU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=970&av=100013534782121&eav=AfYDWSKazny1fY8buPjg9bNV8I7ptGgclanXkdSPyRTAXunVJ5QgYoGX2_LBK_UakCU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=970&av=100013534782121&eav=AfYDWSKazny1fY8buPjg9bNV8I7ptGgclanXkdSPyRTAXunVJ5QgYoGX2_LBK_UakCU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giorgia Pal,,2019-05-18,2,ci devono esser fatti non paroleeee,/giorgia.palmeri?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=500&av=100013534782121&eav=AfYMtT8PfS-vJuKKwCpHSBWwg1Obce-mrtk3uJi4eRS9lPQCMOgHE8WBNI0INK04CCo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mery Gio,,2019-05-18,5,Grande Salvini 👍🏻 il M5S a casaaaaaaa,/mery.gio.5245?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=500&av=100013534782121&eav=AfYMtT8PfS-vJuKKwCpHSBWwg1Obce-mrtk3uJi4eRS9lPQCMOgHE8WBNI0INK04CCo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Filippelli,,2019-05-18,3,MATTEO SALVINI LEADER D'EUROPA ✌ IL POPOLO TI AMA💙🇮🇹🇪🇺,/profile.php?id=100022227433696&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=500&av=100013534782121&eav=AfYMtT8PfS-vJuKKwCpHSBWwg1Obce-mrtk3uJi4eRS9lPQCMOgHE8WBNI0INK04CCo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelo Volpino,,2019-05-18,2,io c'ero bravissimo amicone Matteo complimenti,/angelo.volpino?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=500&av=100013534782121&eav=AfYMtT8PfS-vJuKKwCpHSBWwg1Obce-mrtk3uJi4eRS9lPQCMOgHE8WBNI0INK04CCo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Fauno Vartolo,,2019-05-18,2,E Zorro dove sta?,/gioba.vartolo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=500&av=100013534782121&eav=AfYMtT8PfS-vJuKKwCpHSBWwg1Obce-mrtk3uJi4eRS9lPQCMOgHE8WBNI0INK04CCo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Eva Geraci,,2019-05-18,2,"Congratulazioni, Matteo 😍",/eva.geraci.75?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=500&av=100013534782121&eav=AfYMtT8PfS-vJuKKwCpHSBWwg1Obce-mrtk3uJi4eRS9lPQCMOgHE8WBNI0INK04CCo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Merli,,2019-05-18,2,,/silvana.merli.589?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=500&av=100013534782121&eav=AfYMtT8PfS-vJuKKwCpHSBWwg1Obce-mrtk3uJi4eRS9lPQCMOgHE8WBNI0INK04CCo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alena Krišková,,2019-05-18,2,,/alena.kriskova.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=500&av=100013534782121&eav=AfYMtT8PfS-vJuKKwCpHSBWwg1Obce-mrtk3uJi4eRS9lPQCMOgHE8WBNI0INK04CCo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marina E Sebastiano Iurianello,,2019-05-18,2,mai vista tanta gente!!!!grande Salvini...te lo meriti.,/marinaesebastiano.iurianello?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=500&av=100013534782121&eav=AfYMtT8PfS-vJuKKwCpHSBWwg1Obce-mrtk3uJi4eRS9lPQCMOgHE8WBNI0INK04CCo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=980&av=100013534782121&eav=AfaULrMsf91oJTZkOLtZL995gpPYe_zmUBlAByKVsCUCj89AZRxKsNgnHSrWeUvzJaE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=980&av=100013534782121&eav=AfaULrMsf91oJTZkOLtZL995gpPYe_zmUBlAByKVsCUCj89AZRxKsNgnHSrWeUvzJaE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=980&av=100013534782121&eav=AfaULrMsf91oJTZkOLtZL995gpPYe_zmUBlAByKVsCUCj89AZRxKsNgnHSrWeUvzJaE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=980&av=100013534782121&eav=AfaULrMsf91oJTZkOLtZL995gpPYe_zmUBlAByKVsCUCj89AZRxKsNgnHSrWeUvzJaE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=980&av=100013534782121&eav=AfaULrMsf91oJTZkOLtZL995gpPYe_zmUBlAByKVsCUCj89AZRxKsNgnHSrWeUvzJaE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=980&av=100013534782121&eav=AfaULrMsf91oJTZkOLtZL995gpPYe_zmUBlAByKVsCUCj89AZRxKsNgnHSrWeUvzJaE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=980&av=100013534782121&eav=AfaULrMsf91oJTZkOLtZL995gpPYe_zmUBlAByKVsCUCj89AZRxKsNgnHSrWeUvzJaE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=980&av=100013534782121&eav=AfaULrMsf91oJTZkOLtZL995gpPYe_zmUBlAByKVsCUCj89AZRxKsNgnHSrWeUvzJaE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=980&av=100013534782121&eav=AfaULrMsf91oJTZkOLtZL995gpPYe_zmUBlAByKVsCUCj89AZRxKsNgnHSrWeUvzJaE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=980&av=100013534782121&eav=AfaULrMsf91oJTZkOLtZL995gpPYe_zmUBlAByKVsCUCj89AZRxKsNgnHSrWeUvzJaE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosamaria Avella,,2019-05-18,,,/rosamaria.avella?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=990&av=100013534782121&eav=AfYF9_8DcLAm5D2R-5EB3t_1dZ9Yl7sw2okn_tAWt3bUVExxHNdDZUP88sU56mtjCBg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Piera Calabrice,,2019-05-18,,,/piera.calabrice?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=990&av=100013534782121&eav=AfYF9_8DcLAm5D2R-5EB3t_1dZ9Yl7sw2okn_tAWt3bUVExxHNdDZUP88sU56mtjCBg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=990&av=100013534782121&eav=AfYF9_8DcLAm5D2R-5EB3t_1dZ9Yl7sw2okn_tAWt3bUVExxHNdDZUP88sU56mtjCBg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,1,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=990&av=100013534782121&eav=AfYF9_8DcLAm5D2R-5EB3t_1dZ9Yl7sw2okn_tAWt3bUVExxHNdDZUP88sU56mtjCBg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=990&av=100013534782121&eav=AfYF9_8DcLAm5D2R-5EB3t_1dZ9Yl7sw2okn_tAWt3bUVExxHNdDZUP88sU56mtjCBg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=990&av=100013534782121&eav=AfYF9_8DcLAm5D2R-5EB3t_1dZ9Yl7sw2okn_tAWt3bUVExxHNdDZUP88sU56mtjCBg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=990&av=100013534782121&eav=AfYF9_8DcLAm5D2R-5EB3t_1dZ9Yl7sw2okn_tAWt3bUVExxHNdDZUP88sU56mtjCBg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=990&av=100013534782121&eav=AfYF9_8DcLAm5D2R-5EB3t_1dZ9Yl7sw2okn_tAWt3bUVExxHNdDZUP88sU56mtjCBg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=990&av=100013534782121&eav=AfYF9_8DcLAm5D2R-5EB3t_1dZ9Yl7sw2okn_tAWt3bUVExxHNdDZUP88sU56mtjCBg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=990&av=100013534782121&eav=AfYF9_8DcLAm5D2R-5EB3t_1dZ9Yl7sw2okn_tAWt3bUVExxHNdDZUP88sU56mtjCBg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Gianazza,ROOT,2019-05-18,4,"Milano ha detto SI, l'Italia ha detto SÌ.!!!",/profile.php?id=100009975420383&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301914100697736&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA2Obn0ErsgBUP_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annita Terruli,Giovanna Gianazza,2019-05-18,,Giovanna Gianazza SI ANDIAMO A FUNGHI CHE E UNA BELLA GIORNATA AUTUNALLE VENGO ANCHE IO,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301914100697736&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA2Obn0ErsgBUP_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna Di Paolantonio,,2019-05-18,,,/anna.dipaolantonio.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1000&av=100013534782121&eav=AfZPOVCfv15cQxBeKxjaJAW-Ukacnv9K_sxuyxqeUp8p4ktlFGzXUWenpqe8dNSVy7Q&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Di Paolantonio,,2019-05-18,,,/anna.dipaolantonio.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1000&av=100013534782121&eav=AfZPOVCfv15cQxBeKxjaJAW-Ukacnv9K_sxuyxqeUp8p4ktlFGzXUWenpqe8dNSVy7Q&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1000&av=100013534782121&eav=AfZPOVCfv15cQxBeKxjaJAW-Ukacnv9K_sxuyxqeUp8p4ktlFGzXUWenpqe8dNSVy7Q&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1000&av=100013534782121&eav=AfZPOVCfv15cQxBeKxjaJAW-Ukacnv9K_sxuyxqeUp8p4ktlFGzXUWenpqe8dNSVy7Q&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1000&av=100013534782121&eav=AfZPOVCfv15cQxBeKxjaJAW-Ukacnv9K_sxuyxqeUp8p4ktlFGzXUWenpqe8dNSVy7Q&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1000&av=100013534782121&eav=AfZPOVCfv15cQxBeKxjaJAW-Ukacnv9K_sxuyxqeUp8p4ktlFGzXUWenpqe8dNSVy7Q&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1000&av=100013534782121&eav=AfZPOVCfv15cQxBeKxjaJAW-Ukacnv9K_sxuyxqeUp8p4ktlFGzXUWenpqe8dNSVy7Q&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1000&av=100013534782121&eav=AfZPOVCfv15cQxBeKxjaJAW-Ukacnv9K_sxuyxqeUp8p4ktlFGzXUWenpqe8dNSVy7Q&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1000&av=100013534782121&eav=AfZPOVCfv15cQxBeKxjaJAW-Ukacnv9K_sxuyxqeUp8p4ktlFGzXUWenpqe8dNSVy7Q&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1000&av=100013534782121&eav=AfZPOVCfv15cQxBeKxjaJAW-Ukacnv9K_sxuyxqeUp8p4ktlFGzXUWenpqe8dNSVy7Q&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marina E Sebastiano Iurianello,,2019-05-18,2,mai vista tanta gente!!!!grande Salvini...te lo meriti.,/marinaesebastiano.iurianello?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=510&av=100013534782121&eav=AfZbUJvOzJi2-GBDetGfl45Tai5Ho7rl7_tANN35y18OMjkg-j3hAcLWdqK_0NfT1EE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Anghinetti,,2019-05-18,3,Grande MANIFESTAZIONE! ! Piazza Strapiena!,/silvana.anghinetti.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=510&av=100013534782121&eav=AfZbUJvOzJi2-GBDetGfl45Tai5Ho7rl7_tANN35y18OMjkg-j3hAcLWdqK_0NfT1EE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ornella Rinaldi,,2019-05-18,2,E loro sono 4 topi 🤣🤣🤣,/ornella.miluna?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=510&av=100013534782121&eav=AfZbUJvOzJi2-GBDetGfl45Tai5Ho7rl7_tANN35y18OMjkg-j3hAcLWdqK_0NfT1EE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelina Martinello,,2019-05-18,3,Da fare paura a 5 stelle 🤗🤩🤩🤩🤩,/maria.martinello.90?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=510&av=100013534782121&eav=AfZbUJvOzJi2-GBDetGfl45Tai5Ho7rl7_tANN35y18OMjkg-j3hAcLWdqK_0NfT1EE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Omar Borghini,,2019-05-18,2,per fortuna nessuno li vota 😂😂😂,/omar.borghini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=510&av=100013534782121&eav=AfZbUJvOzJi2-GBDetGfl45Tai5Ho7rl7_tANN35y18OMjkg-j3hAcLWdqK_0NfT1EE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marisa Medioli,,2019-05-18,2,,/marisa.medioli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=510&av=100013534782121&eav=AfZbUJvOzJi2-GBDetGfl45Tai5Ho7rl7_tANN35y18OMjkg-j3hAcLWdqK_0NfT1EE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mariella Rota,,2019-05-18,2,Che soddisfazione! Bellissimo! Era ovvio!,/mariella.rota.94?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=510&av=100013534782121&eav=AfZbUJvOzJi2-GBDetGfl45Tai5Ho7rl7_tANN35y18OMjkg-j3hAcLWdqK_0NfT1EE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ines Luglio,,2019-05-18,3,Complimenti Matteo Salvini! 💚👍,/ines.luglio?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=510&av=100013534782121&eav=AfZbUJvOzJi2-GBDetGfl45Tai5Ho7rl7_tANN35y18OMjkg-j3hAcLWdqK_0NfT1EE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Guerra Mirko,,2019-05-18,2,Sempre al tuo fianco capitano,/guerra.mirko.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=510&av=100013534782121&eav=AfZbUJvOzJi2-GBDetGfl45Tai5Ho7rl7_tANN35y18OMjkg-j3hAcLWdqK_0NfT1EE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1010&av=100013534782121&eav=AfY_8X4YNiNILna6d4mcJiFCfqHhaERSPhXyhs8VWwc3S7YK9A_gWwFxo2htBsPgKMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vita Fuggiano,,2019-05-18,,,/vita.fuggiano?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1010&av=100013534782121&eav=AfY_8X4YNiNILna6d4mcJiFCfqHhaERSPhXyhs8VWwc3S7YK9A_gWwFxo2htBsPgKMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,1,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1010&av=100013534782121&eav=AfY_8X4YNiNILna6d4mcJiFCfqHhaERSPhXyhs8VWwc3S7YK9A_gWwFxo2htBsPgKMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1010&av=100013534782121&eav=AfY_8X4YNiNILna6d4mcJiFCfqHhaERSPhXyhs8VWwc3S7YK9A_gWwFxo2htBsPgKMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +L'Anto Verri,,2019-05-18,,,/anto.verrini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1010&av=100013534782121&eav=AfY_8X4YNiNILna6d4mcJiFCfqHhaERSPhXyhs8VWwc3S7YK9A_gWwFxo2htBsPgKMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Arianna Scipioni,,2019-05-18,,,/arianna.scipioni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1010&av=100013534782121&eav=AfY_8X4YNiNILna6d4mcJiFCfqHhaERSPhXyhs8VWwc3S7YK9A_gWwFxo2htBsPgKMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +L'Anto Verri,,2019-05-18,,,/anto.verrini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1010&av=100013534782121&eav=AfY_8X4YNiNILna6d4mcJiFCfqHhaERSPhXyhs8VWwc3S7YK9A_gWwFxo2htBsPgKMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +L'Anto Verri,,2019-05-18,,,/anto.verrini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1010&av=100013534782121&eav=AfY_8X4YNiNILna6d4mcJiFCfqHhaERSPhXyhs8VWwc3S7YK9A_gWwFxo2htBsPgKMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +L'Anto Verri,,2019-05-18,,,/anto.verrini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1010&av=100013534782121&eav=AfY_8X4YNiNILna6d4mcJiFCfqHhaERSPhXyhs8VWwc3S7YK9A_gWwFxo2htBsPgKMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +L'Anto Verri,,2019-05-18,,,/anto.verrini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1010&av=100013534782121&eav=AfY_8X4YNiNILna6d4mcJiFCfqHhaERSPhXyhs8VWwc3S7YK9A_gWwFxo2htBsPgKMk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Katonáné Gazsó Éva,,2019-05-18,,,/katonanegazso.eva?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1020&av=100013534782121&eav=AfYMH7dyNjIoG8ToZPnWU-8BSlaUIm1Yhl5QU7sG08yQEK_ejPqdpBx3nxn2FxERv9A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Forte Stefano,,2019-05-18,,,/forte.stefano.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1020&av=100013534782121&eav=AfYMH7dyNjIoG8ToZPnWU-8BSlaUIm1Yhl5QU7sG08yQEK_ejPqdpBx3nxn2FxERv9A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Floriana Picciarelli,,2019-05-18,,,/profile.php?id=100010058293100&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1020&av=100013534782121&eav=AfYMH7dyNjIoG8ToZPnWU-8BSlaUIm1Yhl5QU7sG08yQEK_ejPqdpBx3nxn2FxERv9A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Taty Bella,,2019-05-18,,,/taty.bella.372?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1020&av=100013534782121&eav=AfYMH7dyNjIoG8ToZPnWU-8BSlaUIm1Yhl5QU7sG08yQEK_ejPqdpBx3nxn2FxERv9A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Forte Stefano,,2019-05-18,,,/forte.stefano.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1020&av=100013534782121&eav=AfYMH7dyNjIoG8ToZPnWU-8BSlaUIm1Yhl5QU7sG08yQEK_ejPqdpBx3nxn2FxERv9A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Teresa Buzzella,,2019-05-18,,,/teresa.buzzella?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1020&av=100013534782121&eav=AfYMH7dyNjIoG8ToZPnWU-8BSlaUIm1Yhl5QU7sG08yQEK_ejPqdpBx3nxn2FxERv9A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Forte Stefano,,2019-05-18,,,/forte.stefano.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1020&av=100013534782121&eav=AfYMH7dyNjIoG8ToZPnWU-8BSlaUIm1Yhl5QU7sG08yQEK_ejPqdpBx3nxn2FxERv9A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Teresa Buzzella,,2019-05-18,,,/teresa.buzzella?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1020&av=100013534782121&eav=AfYMH7dyNjIoG8ToZPnWU-8BSlaUIm1Yhl5QU7sG08yQEK_ejPqdpBx3nxn2FxERv9A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Belleri,,2019-05-18,,,/maria.belleri.39?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1020&av=100013534782121&eav=AfYMH7dyNjIoG8ToZPnWU-8BSlaUIm1Yhl5QU7sG08yQEK_ejPqdpBx3nxn2FxERv9A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcello Gulotta,,2019-05-18,1,Avanti tutta CAPITANO,/marcello.gulotta.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1020&av=100013534782121&eav=AfYMH7dyNjIoG8ToZPnWU-8BSlaUIm1Yhl5QU7sG08yQEK_ejPqdpBx3nxn2FxERv9A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Gianazza,ROOT,2019-05-18,4,"Milano ha detto SI, l'Italia ha detto SÌ.!!!",/profile.php?id=100009975420383&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301914100697736&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA2Obn0ErsgBUP_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annita Terruli,Giovanna Gianazza,2019-05-18,,Giovanna Gianazza SI ANDIAMO A FUNGHI CHE E UNA BELLA GIORNATA AUTUNALLE VENGO ANCHE IO,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301914100697736&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA2Obn0ErsgBUP_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Floriana Picciarelli,,2019-05-18,,,/profile.php?id=100010058293100&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1030&av=100013534782121&eav=Afbweduh9JrPLOweHJB2cz6HRtcHiEhhUQzhgPsNhz3iX2szjdrR50rLN-0SOv1MMBA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giusj Ded,,2019-05-18,,,/giusj.ded?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1030&av=100013534782121&eav=Afbweduh9JrPLOweHJB2cz6HRtcHiEhhUQzhgPsNhz3iX2szjdrR50rLN-0SOv1MMBA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Calenzo Maria Giovanna,,2019-05-18,,,/maria.g.calenzo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1030&av=100013534782121&eav=Afbweduh9JrPLOweHJB2cz6HRtcHiEhhUQzhgPsNhz3iX2szjdrR50rLN-0SOv1MMBA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michela Nalbone Pasquale Polizzi,,2019-05-18,,,/profile.php?id=100010327652284&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1030&av=100013534782121&eav=Afbweduh9JrPLOweHJB2cz6HRtcHiEhhUQzhgPsNhz3iX2szjdrR50rLN-0SOv1MMBA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sonia Vacca,,2019-05-18,,,/sonia.vacca1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1030&av=100013534782121&eav=Afbweduh9JrPLOweHJB2cz6HRtcHiEhhUQzhgPsNhz3iX2szjdrR50rLN-0SOv1MMBA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sonia Vacca,,2019-05-18,,,/sonia.vacca1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1030&av=100013534782121&eav=Afbweduh9JrPLOweHJB2cz6HRtcHiEhhUQzhgPsNhz3iX2szjdrR50rLN-0SOv1MMBA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michela Nalbone Pasquale Polizzi,,2019-05-18,,,/profile.php?id=100010327652284&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1030&av=100013534782121&eav=Afbweduh9JrPLOweHJB2cz6HRtcHiEhhUQzhgPsNhz3iX2szjdrR50rLN-0SOv1MMBA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michela Nalbone Pasquale Polizzi,,2019-05-18,,,/profile.php?id=100010327652284&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1030&av=100013534782121&eav=Afbweduh9JrPLOweHJB2cz6HRtcHiEhhUQzhgPsNhz3iX2szjdrR50rLN-0SOv1MMBA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mikela Grigolo,,2019-05-18,,,/profile.php?id=100008376285415&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1030&av=100013534782121&eav=Afbweduh9JrPLOweHJB2cz6HRtcHiEhhUQzhgPsNhz3iX2szjdrR50rLN-0SOv1MMBA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sonia Vacca,,2019-05-18,,,/sonia.vacca1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1030&av=100013534782121&eav=Afbweduh9JrPLOweHJB2cz6HRtcHiEhhUQzhgPsNhz3iX2szjdrR50rLN-0SOv1MMBA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ivan Fontò,,2019-05-18,2,,/ivan.fonto?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=520&av=100013534782121&eav=AfaNjRCnL5Z85UQolzKip4tmUYzgzVLMdVnrRDbU_9ZWyOVMfyxqWY-CL3T7DGk10YQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giùseppa Azzolina,,2019-05-18,3,Che spettacolo sempre forza lega e' il grande Matteo Salvini👌👌👌👌👌👍👍👍👍👍👍👍👍,/giuseppa.azzolina.35?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=520&av=100013534782121&eav=AfaNjRCnL5Z85UQolzKip4tmUYzgzVLMdVnrRDbU_9ZWyOVMfyxqWY-CL3T7DGk10YQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alba Farina,,2019-05-18,3,Bravo salvini guardati le spalle sei grande,/alba.farina.1293?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=520&av=100013534782121&eav=AfaNjRCnL5Z85UQolzKip4tmUYzgzVLMdVnrRDbU_9ZWyOVMfyxqWY-CL3T7DGk10YQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Massimo Manganelli,,2019-05-18,2,Grande Matteo tutti con te sempre comunque,/massimo.manganelli.37?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=520&av=100013534782121&eav=AfaNjRCnL5Z85UQolzKip4tmUYzgzVLMdVnrRDbU_9ZWyOVMfyxqWY-CL3T7DGk10YQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rossana Bucchieri,,2019-05-18,7,Mi AVETE commossa GRANDI,/rossana.bucchieri.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=520&av=100013534782121&eav=AfaNjRCnL5Z85UQolzKip4tmUYzgzVLMdVnrRDbU_9ZWyOVMfyxqWY-CL3T7DGk10YQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Eleonora Rocca,,2019-05-18,,Magari rimanessi senza parole.. e invece spari cazzate e cattiverie una dopo l'altra,/eleonora.rocca.585?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=520&av=100013534782121&eav=AfaNjRCnL5Z85UQolzKip4tmUYzgzVLMdVnrRDbU_9ZWyOVMfyxqWY-CL3T7DGk10YQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loris Bressan,,2019-05-18,2,Avanti tutta Salvini sei il migliore,/loris.bressan.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=520&av=100013534782121&eav=AfaNjRCnL5Z85UQolzKip4tmUYzgzVLMdVnrRDbU_9ZWyOVMfyxqWY-CL3T7DGk10YQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alfea Menegon,,2019-05-18,2,Grande capitano,/profile.php?id=100006672377331&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=520&av=100013534782121&eav=AfaNjRCnL5Z85UQolzKip4tmUYzgzVLMdVnrRDbU_9ZWyOVMfyxqWY-CL3T7DGk10YQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Zangry Ceramy,,2019-05-18,3,Giorgia e Matteo accoppiata VINCENTE!!!,/zangry.ceramy.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=520&av=100013534782121&eav=AfaNjRCnL5Z85UQolzKip4tmUYzgzVLMdVnrRDbU_9ZWyOVMfyxqWY-CL3T7DGk10YQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sonia Vacca,,2019-05-18,,,/sonia.vacca1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1040&av=100013534782121&eav=AfaZiwKUvu1pfN-wITPHjRjV11djH_kcO45v4Js6KdifgM19UEpEcn8Jn9-Q20zq4Ko&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sonia Vacca,,2019-05-18,,,/sonia.vacca1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1040&av=100013534782121&eav=AfaZiwKUvu1pfN-wITPHjRjV11djH_kcO45v4Js6KdifgM19UEpEcn8Jn9-Q20zq4Ko&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Maddaluno,,2019-05-18,,,/profile.php?id=100009954917979&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1040&av=100013534782121&eav=AfaZiwKUvu1pfN-wITPHjRjV11djH_kcO45v4Js6KdifgM19UEpEcn8Jn9-Q20zq4Ko&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Cencetti,,2019-05-18,,,/profile.php?id=100011112935145&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1040&av=100013534782121&eav=AfaZiwKUvu1pfN-wITPHjRjV11djH_kcO45v4Js6KdifgM19UEpEcn8Jn9-Q20zq4Ko&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Cencetti,,2019-05-18,,,/profile.php?id=100011112935145&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1040&av=100013534782121&eav=AfaZiwKUvu1pfN-wITPHjRjV11djH_kcO45v4Js6KdifgM19UEpEcn8Jn9-Q20zq4Ko&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gino Liburdi,,2019-05-18,,,/gino.liburdi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1040&av=100013534782121&eav=AfaZiwKUvu1pfN-wITPHjRjV11djH_kcO45v4Js6KdifgM19UEpEcn8Jn9-Q20zq4Ko&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna D'uva,,2019-05-18,,,/gduva1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1040&av=100013534782121&eav=AfaZiwKUvu1pfN-wITPHjRjV11djH_kcO45v4Js6KdifgM19UEpEcn8Jn9-Q20zq4Ko&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emilia Razzano,,2019-05-18,,,/emilia.razzano?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1040&av=100013534782121&eav=AfaZiwKUvu1pfN-wITPHjRjV11djH_kcO45v4Js6KdifgM19UEpEcn8Jn9-Q20zq4Ko&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emilia Razzano,,2019-05-18,,,/emilia.razzano?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1040&av=100013534782121&eav=AfaZiwKUvu1pfN-wITPHjRjV11djH_kcO45v4Js6KdifgM19UEpEcn8Jn9-Q20zq4Ko&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Ottaviani,,2019-05-18,,,/daniela.ottaviani.90?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1040&av=100013534782121&eav=AfaZiwKUvu1pfN-wITPHjRjV11djH_kcO45v4Js6KdifgM19UEpEcn8Jn9-Q20zq4Ko&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Restani,,2019-05-18,,,/profile.php?id=100004621006486&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1050&av=100013534782121&eav=AfYHmegImXKZ-RtdlpDnPMuduBlck_h8Rgg_8KIAhU8TDmvNdakrYYa28wdW06wbvK0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianni Zanetti,,2019-05-18,,,/gianni.zanetti3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1050&av=100013534782121&eav=AfYHmegImXKZ-RtdlpDnPMuduBlck_h8Rgg_8KIAhU8TDmvNdakrYYa28wdW06wbvK0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianni Zanetti,,2019-05-18,,,/gianni.zanetti3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1050&av=100013534782121&eav=AfYHmegImXKZ-RtdlpDnPMuduBlck_h8Rgg_8KIAhU8TDmvNdakrYYa28wdW06wbvK0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianni Zanetti,,2019-05-18,,,/gianni.zanetti3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1050&av=100013534782121&eav=AfYHmegImXKZ-RtdlpDnPMuduBlck_h8Rgg_8KIAhU8TDmvNdakrYYa28wdW06wbvK0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianni Zanetti,,2019-05-18,,,/gianni.zanetti3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1050&av=100013534782121&eav=AfYHmegImXKZ-RtdlpDnPMuduBlck_h8Rgg_8KIAhU8TDmvNdakrYYa28wdW06wbvK0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianni Zanetti,,2019-05-18,1,,/gianni.zanetti3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1050&av=100013534782121&eav=AfYHmegImXKZ-RtdlpDnPMuduBlck_h8Rgg_8KIAhU8TDmvNdakrYYa28wdW06wbvK0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Carniani,,2019-05-18,,,/cristina.carniani.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1050&av=100013534782121&eav=AfYHmegImXKZ-RtdlpDnPMuduBlck_h8Rgg_8KIAhU8TDmvNdakrYYa28wdW06wbvK0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianni Zanetti,,2019-05-18,,,/gianni.zanetti3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1050&av=100013534782121&eav=AfYHmegImXKZ-RtdlpDnPMuduBlck_h8Rgg_8KIAhU8TDmvNdakrYYa28wdW06wbvK0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianni Zanetti,,2019-05-18,,,/gianni.zanetti3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1050&av=100013534782121&eav=AfYHmegImXKZ-RtdlpDnPMuduBlck_h8Rgg_8KIAhU8TDmvNdakrYYa28wdW06wbvK0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mariapia Popolo,,2019-05-18,1,,/mariapia.popolo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1050&av=100013534782121&eav=AfYHmegImXKZ-RtdlpDnPMuduBlck_h8Rgg_8KIAhU8TDmvNdakrYYa28wdW06wbvK0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Massimiliano Simone,ROOT,2019-05-18,2,Play Video,/massimiliano.simone.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511783155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD7gz0PvdxU1AI_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Massimiliano Simone,2019-05-18,,Massimiliano Simone 🖕,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622511783155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD7gz0PvdxU1AI_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Rosa Rocca,,2019-05-18,,,/mariarosa.rocca.90?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1060&av=100013534782121&eav=AfZntVbeczcVZZ-U4js54Hklq_7iyYW5ZGx-MVipKrGjjQUP3krob7G3BEydT1aF1Mg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Cancellieri,,2019-05-18,,Vedete cosa vogliono i cittadini Italiani,/silvana.cancellieri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1060&av=100013534782121&eav=AfZntVbeczcVZZ-U4js54Hklq_7iyYW5ZGx-MVipKrGjjQUP3krob7G3BEydT1aF1Mg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alba Fragogna,,2019-05-18,,,/alba.fragogna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1060&av=100013534782121&eav=AfZntVbeczcVZZ-U4js54Hklq_7iyYW5ZGx-MVipKrGjjQUP3krob7G3BEydT1aF1Mg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Deborah Antonietta Leoni,,2019-05-18,,,/deborahantoniettaleoni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1060&av=100013534782121&eav=AfZntVbeczcVZZ-U4js54Hklq_7iyYW5ZGx-MVipKrGjjQUP3krob7G3BEydT1aF1Mg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Colombo,,2019-05-18,,,/antonella.colombo.79?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1060&av=100013534782121&eav=AfZntVbeczcVZZ-U4js54Hklq_7iyYW5ZGx-MVipKrGjjQUP3krob7G3BEydT1aF1Mg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bruna Monaco,,2019-05-18,,,/profile.php?id=100009387562859&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1060&av=100013534782121&eav=AfZntVbeczcVZZ-U4js54Hklq_7iyYW5ZGx-MVipKrGjjQUP3krob7G3BEydT1aF1Mg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tina Tacchella,,2019-05-18,,,/tina.tacchella.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1060&av=100013534782121&eav=AfZntVbeczcVZZ-U4js54Hklq_7iyYW5ZGx-MVipKrGjjQUP3krob7G3BEydT1aF1Mg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bruna Monaco,,2019-05-18,,,/profile.php?id=100009387562859&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1060&av=100013534782121&eav=AfZntVbeczcVZZ-U4js54Hklq_7iyYW5ZGx-MVipKrGjjQUP3krob7G3BEydT1aF1Mg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tina Tacchella,,2019-05-18,,,/tina.tacchella.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1060&av=100013534782121&eav=AfZntVbeczcVZZ-U4js54Hklq_7iyYW5ZGx-MVipKrGjjQUP3krob7G3BEydT1aF1Mg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tina Tacchella,,2019-05-18,,,/tina.tacchella.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1060&av=100013534782121&eav=AfZntVbeczcVZZ-U4js54Hklq_7iyYW5ZGx-MVipKrGjjQUP3krob7G3BEydT1aF1Mg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tina Tacchella,,2019-05-18,,,/tina.tacchella.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1070&av=100013534782121&eav=AfaC4DSs0ZciuqUAvYa7AKcnT0-2s48dq-zXpMmQCHAsgejDycmX1S_WMGbcGXlYSb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Ponticelli,,2019-05-18,1,,/gabriella.ponticelli.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1070&av=100013534782121&eav=AfaC4DSs0ZciuqUAvYa7AKcnT0-2s48dq-zXpMmQCHAsgejDycmX1S_WMGbcGXlYSb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Bertaia,,2019-05-18,,,/giovanna.bertaia?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1070&av=100013534782121&eav=AfaC4DSs0ZciuqUAvYa7AKcnT0-2s48dq-zXpMmQCHAsgejDycmX1S_WMGbcGXlYSb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Del Gatto Raffaele,,2019-05-18,,,/del.g.raffaele.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1070&av=100013534782121&eav=AfaC4DSs0ZciuqUAvYa7AKcnT0-2s48dq-zXpMmQCHAsgejDycmX1S_WMGbcGXlYSb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gunther Grabner,,2019-05-18,,,/gunther.grabner?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1070&av=100013534782121&eav=AfaC4DSs0ZciuqUAvYa7AKcnT0-2s48dq-zXpMmQCHAsgejDycmX1S_WMGbcGXlYSb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Orsola Pellegrino,,2019-05-18,,,/orsola.pellegrino.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1070&av=100013534782121&eav=AfaC4DSs0ZciuqUAvYa7AKcnT0-2s48dq-zXpMmQCHAsgejDycmX1S_WMGbcGXlYSb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Tocci,,2019-05-18,,,/elena.tocci.56?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1070&av=100013534782121&eav=AfaC4DSs0ZciuqUAvYa7AKcnT0-2s48dq-zXpMmQCHAsgejDycmX1S_WMGbcGXlYSb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Maria De Beris,,2019-05-18,,,/rosamaria.deberis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1070&av=100013534782121&eav=AfaC4DSs0ZciuqUAvYa7AKcnT0-2s48dq-zXpMmQCHAsgejDycmX1S_WMGbcGXlYSb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Maria De Beris,,2019-05-18,,,/rosamaria.deberis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1070&av=100013534782121&eav=AfaC4DSs0ZciuqUAvYa7AKcnT0-2s48dq-zXpMmQCHAsgejDycmX1S_WMGbcGXlYSb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Maria De Beris,,2019-05-18,,,/rosamaria.deberis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1070&av=100013534782121&eav=AfaC4DSs0ZciuqUAvYa7AKcnT0-2s48dq-zXpMmQCHAsgejDycmX1S_WMGbcGXlYSb8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Piccione Pizzo,ROOT,2019-05-18,2,,/impresa.edilpiccione?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265827410337055&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDsgGj7t3OHlMt7&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Balducci,Giuseppe Piccione Pizzo,2019-05-18,1,Giuseppe Piccione Pizzo Giuseppe Piccione Pizzo se ti piace un'Italia impoverita dai finanzieri europei e invasa dai musulmani che ci ammazzano tutti i giorni nel mondo non votare Salvini,/paola.balducci.75?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265827410337055&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDsgGj7t3OHlMt7&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Giuseppe Piccione Pizzo,2019-05-18,,,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265827410337055&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDsgGj7t3OHlMt7&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Giuseppe Piccione Pizzo,2019-05-18,1,Giuseppe Piccione Pizzo tu vomiti...io me la rido !! SALVINI FOREVER💚💖👏👏👏🍾🍾🍾🍾🍾🍾,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265827410337055&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDsgGj7t3OHlMt7&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Piccione Pizzo,Giuseppe Piccione Pizzo,2019-05-18,,Quando ha vinto Renzi vi dava 80euro ora con salvini vi da bugie svegliatevi fatelo per i nostri figli. Ci vogliamo i fatti solo e sempre m5s,/impresa.edilpiccione?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265827410337055&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDsgGj7t3OHlMt7&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosa Maria De Beris,,2019-05-18,,,/rosamaria.deberis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1080&av=100013534782121&eav=AfbAtiqyei2UAMuPknsbUl0BcnA0vSfeZOTbG76OzuvP9yuPRmQ5JJ8K8GhjhwFkYGM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Maria De Beris,,2019-05-18,,,/rosamaria.deberis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1080&av=100013534782121&eav=AfbAtiqyei2UAMuPknsbUl0BcnA0vSfeZOTbG76OzuvP9yuPRmQ5JJ8K8GhjhwFkYGM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Maria De Beris,,2019-05-18,,,/rosamaria.deberis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1080&av=100013534782121&eav=AfbAtiqyei2UAMuPknsbUl0BcnA0vSfeZOTbG76OzuvP9yuPRmQ5JJ8K8GhjhwFkYGM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Maria De Beris,,2019-05-18,,,/rosamaria.deberis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1080&av=100013534782121&eav=AfbAtiqyei2UAMuPknsbUl0BcnA0vSfeZOTbG76OzuvP9yuPRmQ5JJ8K8GhjhwFkYGM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Maria De Beris,,2019-05-18,,,/rosamaria.deberis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1080&av=100013534782121&eav=AfbAtiqyei2UAMuPknsbUl0BcnA0vSfeZOTbG76OzuvP9yuPRmQ5JJ8K8GhjhwFkYGM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Maria De Beris,,2019-05-18,,,/rosamaria.deberis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1080&av=100013534782121&eav=AfbAtiqyei2UAMuPknsbUl0BcnA0vSfeZOTbG76OzuvP9yuPRmQ5JJ8K8GhjhwFkYGM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Cavagna,,2019-05-18,,,/daniela.cavagna.520?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1080&av=100013534782121&eav=AfbAtiqyei2UAMuPknsbUl0BcnA0vSfeZOTbG76OzuvP9yuPRmQ5JJ8K8GhjhwFkYGM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosa Maria De Beris,,2019-05-18,,,/rosamaria.deberis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1080&av=100013534782121&eav=AfbAtiqyei2UAMuPknsbUl0BcnA0vSfeZOTbG76OzuvP9yuPRmQ5JJ8K8GhjhwFkYGM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Volpato,,2019-05-18,,,/maurizio.volpato.37?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1080&av=100013534782121&eav=AfbAtiqyei2UAMuPknsbUl0BcnA0vSfeZOTbG76OzuvP9yuPRmQ5JJ8K8GhjhwFkYGM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Volpato,,2019-05-18,,,/maurizio.volpato.37?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1080&av=100013534782121&eav=AfbAtiqyei2UAMuPknsbUl0BcnA0vSfeZOTbG76OzuvP9yuPRmQ5JJ8K8GhjhwFkYGM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Zangry Ceramy,,2019-05-18,3,Giorgia e Matteo accoppiata VINCENTE!!!,/zangry.ceramy.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=530&av=100013534782121&eav=AfZoDxnUDjhPa2gUnzSQO3SqKWZNBghdqOWR7bjnsxBMvcdt18ff3qQeO9llUcWjdJk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mari Carmen,,2019-05-18,1,Metà non siamo andati per la pioggia... 😔😞🌂💦☔️🌧,/Maricarmn?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=530&av=100013534782121&eav=AfZoDxnUDjhPa2gUnzSQO3SqKWZNBghdqOWR7bjnsxBMvcdt18ff3qQeO9llUcWjdJk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Stallone,,2019-05-18,1,Oggi non sono potuta venire ma il 26 io voto lega,/marvin.rover.14?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=530&av=100013534782121&eav=AfZoDxnUDjhPa2gUnzSQO3SqKWZNBghdqOWR7bjnsxBMvcdt18ff3qQeO9llUcWjdJk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sandra Chiricozzi,,2019-05-18,1,"Stasera ai Tg, diranno che la piazza era semivuota...penosi 😡🤮",/sandra.chiricozzi.96?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=530&av=100013534782121&eav=AfZoDxnUDjhPa2gUnzSQO3SqKWZNBghdqOWR7bjnsxBMvcdt18ff3qQeO9llUcWjdJk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gisella Narcisi,,2019-05-18,1,Per Repubblica.... La piazza è vuota!!!!! 😂😂😂,/gisella.narcisi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=530&av=100013534782121&eav=AfZoDxnUDjhPa2gUnzSQO3SqKWZNBghdqOWR7bjnsxBMvcdt18ff3qQeO9llUcWjdJk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorenzo Rossi,,2019-05-18,1,,/lorenzo.rossi.90226628?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=530&av=100013534782121&eav=AfZoDxnUDjhPa2gUnzSQO3SqKWZNBghdqOWR7bjnsxBMvcdt18ff3qQeO9llUcWjdJk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorenzo Rossi,,2019-05-18,1,,/lorenzo.rossi.90226628?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=530&av=100013534782121&eav=AfZoDxnUDjhPa2gUnzSQO3SqKWZNBghdqOWR7bjnsxBMvcdt18ff3qQeO9llUcWjdJk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vanda Barassi,,2019-05-18,2,Il più grande spettacolo che io abbia mai visto in tutta la mia vita!!!👏👏👏👏,/vanda.barassi.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=530&av=100013534782121&eav=AfZoDxnUDjhPa2gUnzSQO3SqKWZNBghdqOWR7bjnsxBMvcdt18ff3qQeO9llUcWjdJk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tina Russo,,2019-05-18,,,/veerbadshaw.samirahassan.399?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1090&av=100013534782121&eav=Afai2Wz6O-nozl9LuYHs6Q_OX6yjHEVHchHnyGZb5yxfe9p1xtqVBKEujdOSVGBJPZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary Mitchell,,2019-05-18,,,/mary.mitchell.376695?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1090&av=100013534782121&eav=Afai2Wz6O-nozl9LuYHs6Q_OX6yjHEVHchHnyGZb5yxfe9p1xtqVBKEujdOSVGBJPZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary Mitchell,,2019-05-18,,,/mary.mitchell.376695?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1090&av=100013534782121&eav=Afai2Wz6O-nozl9LuYHs6Q_OX6yjHEVHchHnyGZb5yxfe9p1xtqVBKEujdOSVGBJPZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary Mitchell,,2019-05-18,,,/mary.mitchell.376695?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1090&av=100013534782121&eav=Afai2Wz6O-nozl9LuYHs6Q_OX6yjHEVHchHnyGZb5yxfe9p1xtqVBKEujdOSVGBJPZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary Mitchell,,2019-05-18,,,/mary.mitchell.376695?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1090&av=100013534782121&eav=Afai2Wz6O-nozl9LuYHs6Q_OX6yjHEVHchHnyGZb5yxfe9p1xtqVBKEujdOSVGBJPZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Volpato,,2019-05-18,,,/maurizio.volpato.37?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1090&av=100013534782121&eav=Afai2Wz6O-nozl9LuYHs6Q_OX6yjHEVHchHnyGZb5yxfe9p1xtqVBKEujdOSVGBJPZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary Mitchell,,2019-05-18,,,/mary.mitchell.376695?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1090&av=100013534782121&eav=Afai2Wz6O-nozl9LuYHs6Q_OX6yjHEVHchHnyGZb5yxfe9p1xtqVBKEujdOSVGBJPZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary Mitchell,,2019-05-18,,,/mary.mitchell.376695?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1090&av=100013534782121&eav=Afai2Wz6O-nozl9LuYHs6Q_OX6yjHEVHchHnyGZb5yxfe9p1xtqVBKEujdOSVGBJPZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Volpato,,2019-05-18,,,/maurizio.volpato.37?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1090&av=100013534782121&eav=Afai2Wz6O-nozl9LuYHs6Q_OX6yjHEVHchHnyGZb5yxfe9p1xtqVBKEujdOSVGBJPZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary Mitchell,,2019-05-18,,,/mary.mitchell.376695?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1090&av=100013534782121&eav=Afai2Wz6O-nozl9LuYHs6Q_OX6yjHEVHchHnyGZb5yxfe9p1xtqVBKEujdOSVGBJPZM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary Mitchell,,2019-05-18,,,/mary.mitchell.376695?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1100&av=100013534782121&eav=AfYcb3veDBg9p8gfHUbxckcS3XhYHj5QihlSNSWHS29nJUO30DsO9qbHP3NTZvEi9wU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary Mitchell,,2019-05-18,,,/mary.mitchell.376695?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1100&av=100013534782121&eav=AfYcb3veDBg9p8gfHUbxckcS3XhYHj5QihlSNSWHS29nJUO30DsO9qbHP3NTZvEi9wU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nadia Mandressi,,2019-05-18,,,/nadia.mandressi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1100&av=100013534782121&eav=AfYcb3veDBg9p8gfHUbxckcS3XhYHj5QihlSNSWHS29nJUO30DsO9qbHP3NTZvEi9wU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carolina Pantani,,2019-05-18,,,/carolina.pantani.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1100&av=100013534782121&eav=AfYcb3veDBg9p8gfHUbxckcS3XhYHj5QihlSNSWHS29nJUO30DsO9qbHP3NTZvEi9wU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carolina Pantani,,2019-05-18,,,/carolina.pantani.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1100&av=100013534782121&eav=AfYcb3veDBg9p8gfHUbxckcS3XhYHj5QihlSNSWHS29nJUO30DsO9qbHP3NTZvEi9wU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Barattin,,2019-05-18,,,/lucia.barattin?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1100&av=100013534782121&eav=AfYcb3veDBg9p8gfHUbxckcS3XhYHj5QihlSNSWHS29nJUO30DsO9qbHP3NTZvEi9wU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tiziana Soia,,2019-05-18,,,/tiziana.soia.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1100&av=100013534782121&eav=AfYcb3veDBg9p8gfHUbxckcS3XhYHj5QihlSNSWHS29nJUO30DsO9qbHP3NTZvEi9wU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Grieco,,2019-05-18,,,/profile.php?id=100013750058188&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1100&av=100013534782121&eav=AfYcb3veDBg9p8gfHUbxckcS3XhYHj5QihlSNSWHS29nJUO30DsO9qbHP3NTZvEi9wU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ros Mae,,2019-05-18,,,/ros.mae.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1100&av=100013534782121&eav=AfYcb3veDBg9p8gfHUbxckcS3XhYHj5QihlSNSWHS29nJUO30DsO9qbHP3NTZvEi9wU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Di Rico,,2019-05-18,,,/profile.php?id=100012189938731&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1100&av=100013534782121&eav=AfYcb3veDBg9p8gfHUbxckcS3XhYHj5QihlSNSWHS29nJUO30DsO9qbHP3NTZvEi9wU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mariagiovanna Mirano,ROOT,2019-05-18,1,"Mentana, la piazza era vuota!Si vede😉",/mariagiovanna.mirano?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301905520698594&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBE-mJm9EQ5vAiK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mariarosa Tarabella,Mariagiovanna Mirano,2019-05-18,,"Mariagiovanna Mirano sicuramente lo dirà, e così pure tutta la 7.....",/mariarosa.tarabella.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301905520698594&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQBE-mJm9EQ5vAiK&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Alča Opltova,,2019-05-18,,,/alca.opltova?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1110&av=100013534782121&eav=AfYP0XiAjCGO0ONplTa52gQLDTf4uXNMtBBwnhQgGTLVteCV4rxdoZLsn9S3ua4yFOM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuliana Dominici,,2019-05-18,,,/giuliana.dominici.399?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1110&av=100013534782121&eav=AfYP0XiAjCGO0ONplTa52gQLDTf4uXNMtBBwnhQgGTLVteCV4rxdoZLsn9S3ua4yFOM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stella Luminosa,,2019-05-18,,,/stella.luminosa.96742?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1110&av=100013534782121&eav=AfYP0XiAjCGO0ONplTa52gQLDTf4uXNMtBBwnhQgGTLVteCV4rxdoZLsn9S3ua4yFOM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mirta Pacheco,,2019-05-18,,,/mirta.pacheco.167?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1110&av=100013534782121&eav=AfYP0XiAjCGO0ONplTa52gQLDTf4uXNMtBBwnhQgGTLVteCV4rxdoZLsn9S3ua4yFOM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Isabella Malacaria,,2019-05-18,,,/isabella.malacaria?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1110&av=100013534782121&eav=AfYP0XiAjCGO0ONplTa52gQLDTf4uXNMtBBwnhQgGTLVteCV4rxdoZLsn9S3ua4yFOM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Isabella Malacaria,,2019-05-18,,,/isabella.malacaria?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1110&av=100013534782121&eav=AfYP0XiAjCGO0ONplTa52gQLDTf4uXNMtBBwnhQgGTLVteCV4rxdoZLsn9S3ua4yFOM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Corrado Lippi,,2019-05-18,,,/corrado.lippi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1110&av=100013534782121&eav=AfYP0XiAjCGO0ONplTa52gQLDTf4uXNMtBBwnhQgGTLVteCV4rxdoZLsn9S3ua4yFOM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosy Rosita,,2019-05-18,,,/rosy.procopio.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1110&av=100013534782121&eav=AfYP0XiAjCGO0ONplTa52gQLDTf4uXNMtBBwnhQgGTLVteCV4rxdoZLsn9S3ua4yFOM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mimmi Girodo,,2019-05-18,,,/mimmi.girodo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1110&av=100013534782121&eav=AfYP0XiAjCGO0ONplTa52gQLDTf4uXNMtBBwnhQgGTLVteCV4rxdoZLsn9S3ua4yFOM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lilly Marlene,,2019-05-18,,,/marlene.deroma?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1110&av=100013534782121&eav=AfYP0XiAjCGO0ONplTa52gQLDTf4uXNMtBBwnhQgGTLVteCV4rxdoZLsn9S3ua4yFOM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rita Mirabella,,2019-05-18,,,/rita.mirabella.716?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1120&av=100013534782121&eav=AfZ9svSL8KTXB-3gjK_UIitHLzEJ5lN9PpmlJwBeZDTpsp_lPichQNNdAks09UbxutU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Marlot,,2019-05-18,,,/profile.php?id=100019088463584&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1120&av=100013534782121&eav=AfZ9svSL8KTXB-3gjK_UIitHLzEJ5lN9PpmlJwBeZDTpsp_lPichQNNdAks09UbxutU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Teresa Marini,,2019-05-18,,,/teresa.marini.505?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1120&av=100013534782121&eav=AfZ9svSL8KTXB-3gjK_UIitHLzEJ5lN9PpmlJwBeZDTpsp_lPichQNNdAks09UbxutU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Marlot,,2019-05-18,,,/profile.php?id=100019088463584&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1120&av=100013534782121&eav=AfZ9svSL8KTXB-3gjK_UIitHLzEJ5lN9PpmlJwBeZDTpsp_lPichQNNdAks09UbxutU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Marlot,,2019-05-18,,,/profile.php?id=100019088463584&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1120&av=100013534782121&eav=AfZ9svSL8KTXB-3gjK_UIitHLzEJ5lN9PpmlJwBeZDTpsp_lPichQNNdAks09UbxutU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Marlot,,2019-05-18,,,/profile.php?id=100019088463584&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1120&av=100013534782121&eav=AfZ9svSL8KTXB-3gjK_UIitHLzEJ5lN9PpmlJwBeZDTpsp_lPichQNNdAks09UbxutU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Marlot,,2019-05-18,1,,/profile.php?id=100019088463584&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1120&av=100013534782121&eav=AfZ9svSL8KTXB-3gjK_UIitHLzEJ5lN9PpmlJwBeZDTpsp_lPichQNNdAks09UbxutU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Irma Colombaro,,2019-05-18,,,/profile.php?id=100009602443080&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1120&av=100013534782121&eav=AfZ9svSL8KTXB-3gjK_UIitHLzEJ5lN9PpmlJwBeZDTpsp_lPichQNNdAks09UbxutU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Irma Colombaro,,2019-05-18,,,/profile.php?id=100009602443080&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1120&av=100013534782121&eav=AfZ9svSL8KTXB-3gjK_UIitHLzEJ5lN9PpmlJwBeZDTpsp_lPichQNNdAks09UbxutU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cosetta Riccardi,,2019-05-18,,,/cosetta.riccardi.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1120&av=100013534782121&eav=AfZ9svSL8KTXB-3gjK_UIitHLzEJ5lN9PpmlJwBeZDTpsp_lPichQNNdAks09UbxutU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +LuKa Dema,ROOT,2019-05-18,1,La Boldrini cosa dice?,/benito.musso81?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301904534032026&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAW8MbQ07dpU-UZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,LuKa Dema,2019-05-18,,"LuKa Dema se la Boldrini tace, é meglio",/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301904534032026&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAW8MbQ07dpU-UZ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Franca Maria Arduini,,2019-05-18,,,/francamaria.arduini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1130&av=100013534782121&eav=Afbt3Ts3km-dw7ZvT6hsFxpBlz2C3teFSZKFYDuhZZNZZ6nZdI2-VeKD93eCsuvCj_c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosy Di Toro,,2019-05-18,,,/rosy.ditoro?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1130&av=100013534782121&eav=Afbt3Ts3km-dw7ZvT6hsFxpBlz2C3teFSZKFYDuhZZNZZ6nZdI2-VeKD93eCsuvCj_c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Pirillo,,2019-05-18,,,/giovanna.pirillo.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1130&av=100013534782121&eav=Afbt3Ts3km-dw7ZvT6hsFxpBlz2C3teFSZKFYDuhZZNZZ6nZdI2-VeKD93eCsuvCj_c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Onetti,,2019-05-18,,,/marco.onetti.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1130&av=100013534782121&eav=Afbt3Ts3km-dw7ZvT6hsFxpBlz2C3teFSZKFYDuhZZNZZ6nZdI2-VeKD93eCsuvCj_c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lilli Bias,,2019-05-18,,Grande Ministro Salvini siamo orgogliosi di te,/lilli.bias?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1130&av=100013534782121&eav=Afbt3Ts3km-dw7ZvT6hsFxpBlz2C3teFSZKFYDuhZZNZZ6nZdI2-VeKD93eCsuvCj_c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Zenaida Salas Javier,,2019-05-18,,,/zenaida.javier.925?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1130&av=100013534782121&eav=Afbt3Ts3km-dw7ZvT6hsFxpBlz2C3teFSZKFYDuhZZNZZ6nZdI2-VeKD93eCsuvCj_c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Zenaida Salas Javier,,2019-05-18,,,/zenaida.javier.925?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1130&av=100013534782121&eav=Afbt3Ts3km-dw7ZvT6hsFxpBlz2C3teFSZKFYDuhZZNZZ6nZdI2-VeKD93eCsuvCj_c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianna Di Natale,,2019-05-18,,,/gianna.dinatale.73?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1130&av=100013534782121&eav=Afbt3Ts3km-dw7ZvT6hsFxpBlz2C3teFSZKFYDuhZZNZZ6nZdI2-VeKD93eCsuvCj_c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Manuela Ronchi,,2019-05-18,2,MATTEO SEI IL NOSTRO ORGOGLIO!!!,/manuela.ronchi.50?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1130&av=100013534782121&eav=Afbt3Ts3km-dw7ZvT6hsFxpBlz2C3teFSZKFYDuhZZNZZ6nZdI2-VeKD93eCsuvCj_c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonia Pezzolato,,2019-05-18,,,/antonia.pezzolato.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1130&av=100013534782121&eav=Afbt3Ts3km-dw7ZvT6hsFxpBlz2C3teFSZKFYDuhZZNZZ6nZdI2-VeKD93eCsuvCj_c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vanda Barassi,,2019-05-18,2,Il più grande spettacolo che io abbia mai visto in tutta la mia vita!!!👏👏👏👏,/vanda.barassi.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=540&av=100013534782121&eav=AfZ6vvmPPMQsrfk4uei6MHKHmpmORyBS_l-SQo_hrfzFvq3s02C8-rHcJ-W_TnRJ38c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tina Boffa,,2019-05-18,1,Grande capitano,/tina.boffa.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=540&av=100013534782121&eav=AfZ6vvmPPMQsrfk4uei6MHKHmpmORyBS_l-SQo_hrfzFvq3s02C8-rHcJ-W_TnRJ38c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Christophe Duchanoy,,2019-05-18,1,forza Italia !,/ChrisZemmour?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=540&av=100013534782121&eav=AfZ6vvmPPMQsrfk4uei6MHKHmpmORyBS_l-SQo_hrfzFvq3s02C8-rHcJ-W_TnRJ38c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lia Dentico,,2019-05-18,1,Una giornata emozionante . Grande Salvini.,/profile.php?id=100010314161354&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=540&av=100013534782121&eav=AfZ6vvmPPMQsrfk4uei6MHKHmpmORyBS_l-SQo_hrfzFvq3s02C8-rHcJ-W_TnRJ38c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francina Foresti,,2019-05-18,1,E senza persone ahahahahhahaha #primalepersone,/la.fre.10?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=540&av=100013534782121&eav=AfZ6vvmPPMQsrfk4uei6MHKHmpmORyBS_l-SQo_hrfzFvq3s02C8-rHcJ-W_TnRJ38c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Peroni,,2019-05-18,1,Te lo meriti grazie ministro 😘😍💖🤩💚💚💚💚,/peroni.elena?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=540&av=100013534782121&eav=AfZ6vvmPPMQsrfk4uei6MHKHmpmORyBS_l-SQo_hrfzFvq3s02C8-rHcJ-W_TnRJ38c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cinzia Mauri,,2019-05-18,1,Ho visto la diretta su fb quanta gente !!!!,/marika.leone.35762?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=540&av=100013534782121&eav=AfZ6vvmPPMQsrfk4uei6MHKHmpmORyBS_l-SQo_hrfzFvq3s02C8-rHcJ-W_TnRJ38c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lia Emy,,2019-05-18,4,Bravo Ministro Sei La Voce Del Popolo ❤️💪,/Emy.sgalia.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=540&av=100013534782121&eav=AfZ6vvmPPMQsrfk4uei6MHKHmpmORyBS_l-SQo_hrfzFvq3s02C8-rHcJ-W_TnRJ38c&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonia Pezzolato,,2019-05-18,,,/antonia.pezzolato.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1140&av=100013534782121&eav=AfYppqikWmODfoPjSjkUqp9ZqPkganA3a_G4CCo3z5D1_bNC0w0aLwWHPIFglhJVuqE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,1,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1140&av=100013534782121&eav=AfYppqikWmODfoPjSjkUqp9ZqPkganA3a_G4CCo3z5D1_bNC0w0aLwWHPIFglhJVuqE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nancy Michiels,,2019-05-18,,,/nancy.michiels.73?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1140&av=100013534782121&eav=AfYppqikWmODfoPjSjkUqp9ZqPkganA3a_G4CCo3z5D1_bNC0w0aLwWHPIFglhJVuqE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonia Pezzolato,,2019-05-18,,,/antonia.pezzolato.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1140&av=100013534782121&eav=AfYppqikWmODfoPjSjkUqp9ZqPkganA3a_G4CCo3z5D1_bNC0w0aLwWHPIFglhJVuqE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1140&av=100013534782121&eav=AfYppqikWmODfoPjSjkUqp9ZqPkganA3a_G4CCo3z5D1_bNC0w0aLwWHPIFglhJVuqE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1140&av=100013534782121&eav=AfYppqikWmODfoPjSjkUqp9ZqPkganA3a_G4CCo3z5D1_bNC0w0aLwWHPIFglhJVuqE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1140&av=100013534782121&eav=AfYppqikWmODfoPjSjkUqp9ZqPkganA3a_G4CCo3z5D1_bNC0w0aLwWHPIFglhJVuqE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1140&av=100013534782121&eav=AfYppqikWmODfoPjSjkUqp9ZqPkganA3a_G4CCo3z5D1_bNC0w0aLwWHPIFglhJVuqE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1140&av=100013534782121&eav=AfYppqikWmODfoPjSjkUqp9ZqPkganA3a_G4CCo3z5D1_bNC0w0aLwWHPIFglhJVuqE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1140&av=100013534782121&eav=AfYppqikWmODfoPjSjkUqp9ZqPkganA3a_G4CCo3z5D1_bNC0w0aLwWHPIFglhJVuqE&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Perillo,,2019-05-18,1,,/patrizia.perillo.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=550&av=100013534782121&eav=AfbEbMcK7geYWtb6_Jk-H7GvNRHAwMXYEWqD8Um18OiBtVhrXltS5QdLfuzPTkMSNjw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Perazzani,,2019-05-18,2,Considerando la giornata piovosa grandi. Grandissimi.. 💚💚💚,/frenci.frency.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=550&av=100013534782121&eav=AfbEbMcK7geYWtb6_Jk-H7GvNRHAwMXYEWqD8Um18OiBtVhrXltS5QdLfuzPTkMSNjw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mircea Ghica,,2019-05-18,1,,/mircea.ghica?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=550&av=100013534782121&eav=AfbEbMcK7geYWtb6_Jk-H7GvNRHAwMXYEWqD8Um18OiBtVhrXltS5QdLfuzPTkMSNjw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Baldo Carluccio,,2019-05-18,1,Poco tempo fa i grandi raduni erano di un milione di persone,/baldo.carluccio?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=550&av=100013534782121&eav=AfbEbMcK7geYWtb6_Jk-H7GvNRHAwMXYEWqD8Um18OiBtVhrXltS5QdLfuzPTkMSNjw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Davide Scarponi,,2019-05-18,1,Forza Matteo avanti così siamo tutti con te,/davide.scarponi.79?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=550&av=100013534782121&eav=AfbEbMcK7geYWtb6_Jk-H7GvNRHAwMXYEWqD8Um18OiBtVhrXltS5QdLfuzPTkMSNjw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Wilma Viganò,,2019-05-18,1,E qui la festa e il futuro per l'Italia!,/profile.php?id=100010224128680&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=550&av=100013534782121&eav=AfbEbMcK7geYWtb6_Jk-H7GvNRHAwMXYEWqD8Um18OiBtVhrXltS5QdLfuzPTkMSNjw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandra Orl,,2019-05-18,1,Bellissima piazza!!!,/alessandra.orl?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=550&av=100013534782121&eav=AfbEbMcK7geYWtb6_Jk-H7GvNRHAwMXYEWqD8Um18OiBtVhrXltS5QdLfuzPTkMSNjw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cinzia Innani,,2019-05-18,1,"Grande Matteo, ti raccomando non gettare la spugna",/cinzia.innani?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=550&av=100013534782121&eav=AfbEbMcK7geYWtb6_Jk-H7GvNRHAwMXYEWqD8Um18OiBtVhrXltS5QdLfuzPTkMSNjw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuliano Dan,,2019-05-18,1,,/giuly.dan?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=550&av=100013534782121&eav=AfbEbMcK7geYWtb6_Jk-H7GvNRHAwMXYEWqD8Um18OiBtVhrXltS5QdLfuzPTkMSNjw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tiziana Santarelli,,2019-05-18,2,È pioveva...figurati se c'era bel tempo!!!,/tiziana.santarelli.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=550&av=100013534782121&eav=AfbEbMcK7geYWtb6_Jk-H7GvNRHAwMXYEWqD8Um18OiBtVhrXltS5QdLfuzPTkMSNjw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1150&av=100013534782121&eav=Afbaq9RXaFJ8KTT_qp_nmwjyeh2nuQlt0T3DphZs9PIXhPTWFapUtxwOI_Ml9Z1P9Ew&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1150&av=100013534782121&eav=Afbaq9RXaFJ8KTT_qp_nmwjyeh2nuQlt0T3DphZs9PIXhPTWFapUtxwOI_Ml9Z1P9Ew&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1150&av=100013534782121&eav=Afbaq9RXaFJ8KTT_qp_nmwjyeh2nuQlt0T3DphZs9PIXhPTWFapUtxwOI_Ml9Z1P9Ew&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,1,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1150&av=100013534782121&eav=Afbaq9RXaFJ8KTT_qp_nmwjyeh2nuQlt0T3DphZs9PIXhPTWFapUtxwOI_Ml9Z1P9Ew&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1150&av=100013534782121&eav=Afbaq9RXaFJ8KTT_qp_nmwjyeh2nuQlt0T3DphZs9PIXhPTWFapUtxwOI_Ml9Z1P9Ew&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1150&av=100013534782121&eav=Afbaq9RXaFJ8KTT_qp_nmwjyeh2nuQlt0T3DphZs9PIXhPTWFapUtxwOI_Ml9Z1P9Ew&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1150&av=100013534782121&eav=Afbaq9RXaFJ8KTT_qp_nmwjyeh2nuQlt0T3DphZs9PIXhPTWFapUtxwOI_Ml9Z1P9Ew&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1150&av=100013534782121&eav=Afbaq9RXaFJ8KTT_qp_nmwjyeh2nuQlt0T3DphZs9PIXhPTWFapUtxwOI_Ml9Z1P9Ew&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1150&av=100013534782121&eav=Afbaq9RXaFJ8KTT_qp_nmwjyeh2nuQlt0T3DphZs9PIXhPTWFapUtxwOI_Ml9Z1P9Ew&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1150&av=100013534782121&eav=Afbaq9RXaFJ8KTT_qp_nmwjyeh2nuQlt0T3DphZs9PIXhPTWFapUtxwOI_Ml9Z1P9Ew&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1160&av=100013534782121&eav=AfZv-iBsv9OlcFLX7x5Bdz82wqk1yBq0t-mGVIUghMTk20BeObC5LFplFoil7LEVhCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1160&av=100013534782121&eav=AfZv-iBsv9OlcFLX7x5Bdz82wqk1yBq0t-mGVIUghMTk20BeObC5LFplFoil7LEVhCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1160&av=100013534782121&eav=AfZv-iBsv9OlcFLX7x5Bdz82wqk1yBq0t-mGVIUghMTk20BeObC5LFplFoil7LEVhCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1160&av=100013534782121&eav=AfZv-iBsv9OlcFLX7x5Bdz82wqk1yBq0t-mGVIUghMTk20BeObC5LFplFoil7LEVhCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1160&av=100013534782121&eav=AfZv-iBsv9OlcFLX7x5Bdz82wqk1yBq0t-mGVIUghMTk20BeObC5LFplFoil7LEVhCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1160&av=100013534782121&eav=AfZv-iBsv9OlcFLX7x5Bdz82wqk1yBq0t-mGVIUghMTk20BeObC5LFplFoil7LEVhCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1160&av=100013534782121&eav=AfZv-iBsv9OlcFLX7x5Bdz82wqk1yBq0t-mGVIUghMTk20BeObC5LFplFoil7LEVhCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1160&av=100013534782121&eav=AfZv-iBsv9OlcFLX7x5Bdz82wqk1yBq0t-mGVIUghMTk20BeObC5LFplFoil7LEVhCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1160&av=100013534782121&eav=AfZv-iBsv9OlcFLX7x5Bdz82wqk1yBq0t-mGVIUghMTk20BeObC5LFplFoil7LEVhCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1160&av=100013534782121&eav=AfZv-iBsv9OlcFLX7x5Bdz82wqk1yBq0t-mGVIUghMTk20BeObC5LFplFoil7LEVhCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luca Padoan,ROOT,2019-05-18,1,... non c'era proprio nessuno 😲,/Lukesbyme?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301904087365404&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDU5hsNmqkC2rhW&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,Luca Padoan,2019-05-18,,Luca Padoan la foto che gira é di diverse ore prima della manifestazione.,/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301904087365404&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDU5hsNmqkC2rhW&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Luca Padoan,Luca Padoan,2019-05-18,,pensa un po' ... 😏 ... 😉,/Lukesbyme?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301904087365404&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDU5hsNmqkC2rhW&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1170&av=100013534782121&eav=AfYK_JEBXwbS6_qyFV9YimU3sZiu5lStCODT8WhOYCbgpiY140tKCDy9rgSIJmFs2ag&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Manuela Scatolini,,2019-05-18,,,/manuela.scatolini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1170&av=100013534782121&eav=AfYK_JEBXwbS6_qyFV9YimU3sZiu5lStCODT8WhOYCbgpiY140tKCDy9rgSIJmFs2ag&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1170&av=100013534782121&eav=AfYK_JEBXwbS6_qyFV9YimU3sZiu5lStCODT8WhOYCbgpiY140tKCDy9rgSIJmFs2ag&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1170&av=100013534782121&eav=AfYK_JEBXwbS6_qyFV9YimU3sZiu5lStCODT8WhOYCbgpiY140tKCDy9rgSIJmFs2ag&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1170&av=100013534782121&eav=AfYK_JEBXwbS6_qyFV9YimU3sZiu5lStCODT8WhOYCbgpiY140tKCDy9rgSIJmFs2ag&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1170&av=100013534782121&eav=AfYK_JEBXwbS6_qyFV9YimU3sZiu5lStCODT8WhOYCbgpiY140tKCDy9rgSIJmFs2ag&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1170&av=100013534782121&eav=AfYK_JEBXwbS6_qyFV9YimU3sZiu5lStCODT8WhOYCbgpiY140tKCDy9rgSIJmFs2ag&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1170&av=100013534782121&eav=AfYK_JEBXwbS6_qyFV9YimU3sZiu5lStCODT8WhOYCbgpiY140tKCDy9rgSIJmFs2ag&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Aiello,,2019-05-18,,,/Robi.Roberta.A?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1170&av=100013534782121&eav=AfYK_JEBXwbS6_qyFV9YimU3sZiu5lStCODT8WhOYCbgpiY140tKCDy9rgSIJmFs2ag&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Zenaida Salas Javier,,2019-05-18,,,/zenaida.javier.925?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1170&av=100013534782121&eav=AfYK_JEBXwbS6_qyFV9YimU3sZiu5lStCODT8WhOYCbgpiY140tKCDy9rgSIJmFs2ag&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sonia Pannunzi,,2019-05-18,2,Scarica i 5stalle,/signorina.silvani.5494?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1180&av=100013534782121&eav=Afa-lH_j1z0BgWfIv7OqBXxAIxbr3K_n7PIA-SWsX2AFFOntR49UnYf1F7FQyhk95sU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fiorenza Bragagnolo,,2019-05-18,,,/fiorenza.bragagnolo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1180&av=100013534782121&eav=Afa-lH_j1z0BgWfIv7OqBXxAIxbr3K_n7PIA-SWsX2AFFOntR49UnYf1F7FQyhk95sU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fiorenza Bragagnolo,,2019-05-18,,,/fiorenza.bragagnolo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1180&av=100013534782121&eav=Afa-lH_j1z0BgWfIv7OqBXxAIxbr3K_n7PIA-SWsX2AFFOntR49UnYf1F7FQyhk95sU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniele Gianfilippo,,2019-05-18,,,/profile.php?id=100008587890908&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1180&av=100013534782121&eav=Afa-lH_j1z0BgWfIv7OqBXxAIxbr3K_n7PIA-SWsX2AFFOntR49UnYf1F7FQyhk95sU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniele Gianfilippo,,2019-05-18,,,/profile.php?id=100008587890908&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1180&av=100013534782121&eav=Afa-lH_j1z0BgWfIv7OqBXxAIxbr3K_n7PIA-SWsX2AFFOntR49UnYf1F7FQyhk95sU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniele Gianfilippo,,2019-05-18,1,,/profile.php?id=100008587890908&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1180&av=100013534782121&eav=Afa-lH_j1z0BgWfIv7OqBXxAIxbr3K_n7PIA-SWsX2AFFOntR49UnYf1F7FQyhk95sU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniele Gianfilippo,,2019-05-18,,,/profile.php?id=100008587890908&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1180&av=100013534782121&eav=Afa-lH_j1z0BgWfIv7OqBXxAIxbr3K_n7PIA-SWsX2AFFOntR49UnYf1F7FQyhk95sU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Santy Ippolito,,2019-05-18,,,/santy.ippolito.10?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1180&av=100013534782121&eav=Afa-lH_j1z0BgWfIv7OqBXxAIxbr3K_n7PIA-SWsX2AFFOntR49UnYf1F7FQyhk95sU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Santy Ippolito,,2019-05-18,,,/santy.ippolito.10?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1180&av=100013534782121&eav=Afa-lH_j1z0BgWfIv7OqBXxAIxbr3K_n7PIA-SWsX2AFFOntR49UnYf1F7FQyhk95sU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nancy Lo Bosco,,2019-05-18,,,/nancy.lobosco?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1180&av=100013534782121&eav=Afa-lH_j1z0BgWfIv7OqBXxAIxbr3K_n7PIA-SWsX2AFFOntR49UnYf1F7FQyhk95sU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianluca Capone,ROOT,2019-05-18,1,"Pochi, hai ragione senza parole",/ucapuni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522388155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDEtQpuCbT4KU7f&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Patrizia Cusati,Gianluca Capone,2019-05-18,,Quasi quanti da Zingaretti!!!😂😂😂😂😂,/patrizia.cusati.77?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622522388155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDEtQpuCbT4KU7f&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marilena Fratus,,2019-05-18,,,/marilena.fratus.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1190&av=100013534782121&eav=Afa0d6mfmrZguOV-kbCJZswJosB4TYvaAH0fLT7WYWI8twqKirxkL_RiXZmewLVP5Ts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marilena Fratus,,2019-05-18,,,/marilena.fratus.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1190&av=100013534782121&eav=Afa0d6mfmrZguOV-kbCJZswJosB4TYvaAH0fLT7WYWI8twqKirxkL_RiXZmewLVP5Ts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Savona,,2019-05-18,1,,/monica.savona.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1190&av=100013534782121&eav=Afa0d6mfmrZguOV-kbCJZswJosB4TYvaAH0fLT7WYWI8twqKirxkL_RiXZmewLVP5Ts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maura Rusticelli,,2019-05-18,,,/maura.rusticelli?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1190&av=100013534782121&eav=Afa0d6mfmrZguOV-kbCJZswJosB4TYvaAH0fLT7WYWI8twqKirxkL_RiXZmewLVP5Ts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziella Baronchelli,,2019-05-18,,,/graziella.baronchelli?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1190&av=100013534782121&eav=Afa0d6mfmrZguOV-kbCJZswJosB4TYvaAH0fLT7WYWI8twqKirxkL_RiXZmewLVP5Ts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Savona,,2019-05-18,,,/monica.savona.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1190&av=100013534782121&eav=Afa0d6mfmrZguOV-kbCJZswJosB4TYvaAH0fLT7WYWI8twqKirxkL_RiXZmewLVP5Ts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Savona,,2019-05-18,,,/monica.savona.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1190&av=100013534782121&eav=Afa0d6mfmrZguOV-kbCJZswJosB4TYvaAH0fLT7WYWI8twqKirxkL_RiXZmewLVP5Ts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Savona,,2019-05-18,,,/monica.savona.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1190&av=100013534782121&eav=Afa0d6mfmrZguOV-kbCJZswJosB4TYvaAH0fLT7WYWI8twqKirxkL_RiXZmewLVP5Ts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Panagiota Alexopoulou,,2019-05-18,,,/panagiota.alexopoulou.777?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1190&av=100013534782121&eav=Afa0d6mfmrZguOV-kbCJZswJosB4TYvaAH0fLT7WYWI8twqKirxkL_RiXZmewLVP5Ts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Savona,,2019-05-18,,,/monica.savona.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1190&av=100013534782121&eav=Afa0d6mfmrZguOV-kbCJZswJosB4TYvaAH0fLT7WYWI8twqKirxkL_RiXZmewLVP5Ts&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paolo Veronese,,2019-05-18,,"Piazze piene, urne vuote. Sicilia docet!",/paolo.veronese2?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=560&av=100013534782121&eav=AfZOpAwREw9az6UGkCqMO5h7M3RsrUg8iiy6c3O1vbS7vudAmT9MFB4y-yJGXd6NHwo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Giammaria,,2019-05-18,1,Io c’ero e vi assicuro eravamo tantissimi quindi rosicate,/silvana.giammaria?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=560&av=100013534782121&eav=AfZOpAwREw9az6UGkCqMO5h7M3RsrUg8iiy6c3O1vbS7vudAmT9MFB4y-yJGXd6NHwo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Cencetti,,2019-05-18,3,SALVINI SEMPRE con TE non MOLLARE FALLO X NOI ITALIANI 🍀🇮🇹💚🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹,/profile.php?id=100011112935145&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=560&av=100013534782121&eav=AfZOpAwREw9az6UGkCqMO5h7M3RsrUg8iiy6c3O1vbS7vudAmT9MFB4y-yJGXd6NHwo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Lau,,2019-05-18,2,Ma che spettacoloooo ❤️❤️❤️❤️❤️,/lauralau.9421?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=560&av=100013534782121&eav=AfZOpAwREw9az6UGkCqMO5h7M3RsrUg8iiy6c3O1vbS7vudAmT9MFB4y-yJGXd6NHwo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Fontana,,2019-05-18,3,Alla faccia dei pidioti,/maria.fontana.3158?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=560&av=100013534782121&eav=AfZOpAwREw9az6UGkCqMO5h7M3RsrUg8iiy6c3O1vbS7vudAmT9MFB4y-yJGXd6NHwo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosella Caruso,,2019-05-18,2,Ci voleva una giornata così....grazie Matteo!!!,/rosella.caruso.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=560&av=100013534782121&eav=AfZOpAwREw9az6UGkCqMO5h7M3RsrUg8iiy6c3O1vbS7vudAmT9MFB4y-yJGXd6NHwo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giammellaro La Galia Antonella,,2019-05-18,1,,/giammellaro?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=560&av=100013534782121&eav=AfZOpAwREw9az6UGkCqMO5h7M3RsrUg8iiy6c3O1vbS7vudAmT9MFB4y-yJGXd6NHwo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lilly Pagliuca,,2019-05-18,6,Che spettacolo 😍,/pasqualinapaol.pagliuca?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=560&av=100013534782121&eav=AfZOpAwREw9az6UGkCqMO5h7M3RsrUg8iiy6c3O1vbS7vudAmT9MFB4y-yJGXd6NHwo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Savona,,2019-05-18,,,/monica.savona.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1200&av=100013534782121&eav=Afa1nOEEvkPqLU7_ntxYV6EeHIjLsdLGNphXF6i0I0-7RopXp5_5Ii3qQgW-aezDXc8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tina Macconi,,2019-05-18,,,/tina.macconi.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1200&av=100013534782121&eav=Afa1nOEEvkPqLU7_ntxYV6EeHIjLsdLGNphXF6i0I0-7RopXp5_5Ii3qQgW-aezDXc8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Savona,,2019-05-18,,,/monica.savona.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1200&av=100013534782121&eav=Afa1nOEEvkPqLU7_ntxYV6EeHIjLsdLGNphXF6i0I0-7RopXp5_5Ii3qQgW-aezDXc8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Chris Chatzipentidis,,2019-05-18,,,/cxajipendidis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1200&av=100013534782121&eav=Afa1nOEEvkPqLU7_ntxYV6EeHIjLsdLGNphXF6i0I0-7RopXp5_5Ii3qQgW-aezDXc8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Salaris,,2019-05-18,,,/giovanni.salaris.777?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1200&av=100013534782121&eav=Afa1nOEEvkPqLU7_ntxYV6EeHIjLsdLGNphXF6i0I0-7RopXp5_5Ii3qQgW-aezDXc8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Gambina,,2019-05-18,,,/antonio.gambina.52?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1200&av=100013534782121&eav=Afa1nOEEvkPqLU7_ntxYV6EeHIjLsdLGNphXF6i0I0-7RopXp5_5Ii3qQgW-aezDXc8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Gambina,,2019-05-18,,,/antonio.gambina.52?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1200&av=100013534782121&eav=Afa1nOEEvkPqLU7_ntxYV6EeHIjLsdLGNphXF6i0I0-7RopXp5_5Ii3qQgW-aezDXc8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Gambina,,2019-05-18,,,/antonio.gambina.52?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1200&av=100013534782121&eav=Afa1nOEEvkPqLU7_ntxYV6EeHIjLsdLGNphXF6i0I0-7RopXp5_5Ii3qQgW-aezDXc8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Mongiovi,,2019-05-18,,,/maria.mongiovi.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1200&av=100013534782121&eav=Afa1nOEEvkPqLU7_ntxYV6EeHIjLsdLGNphXF6i0I0-7RopXp5_5Ii3qQgW-aezDXc8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Mongiovi,,2019-05-18,,,/maria.mongiovi.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1200&av=100013534782121&eav=Afa1nOEEvkPqLU7_ntxYV6EeHIjLsdLGNphXF6i0I0-7RopXp5_5Ii3qQgW-aezDXc8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Mongiovi,,2019-05-18,,,/maria.mongiovi.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1210&av=100013534782121&eav=AfZNnhbXIHEe4rYCTS8SkGxs2J82764qGvTMlaCKo4R5mfMV2b5aGaxPuMOf18lo8lc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sabrina Di Matteo,,2019-05-18,,,/profile.php?id=100007803349158&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1210&av=100013534782121&eav=AfZNnhbXIHEe4rYCTS8SkGxs2J82764qGvTMlaCKo4R5mfMV2b5aGaxPuMOf18lo8lc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Biasini,,2019-05-18,,,/silvana.biasini.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1210&av=100013534782121&eav=AfZNnhbXIHEe4rYCTS8SkGxs2J82764qGvTMlaCKo4R5mfMV2b5aGaxPuMOf18lo8lc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Guido De Giorgio,,2019-05-18,,,/guido.degiorgio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1210&av=100013534782121&eav=AfZNnhbXIHEe4rYCTS8SkGxs2J82764qGvTMlaCKo4R5mfMV2b5aGaxPuMOf18lo8lc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Valentina Nicolosi,,2019-05-18,,,/valentina.nicolosi.750?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1210&av=100013534782121&eav=AfZNnhbXIHEe4rYCTS8SkGxs2J82764qGvTMlaCKo4R5mfMV2b5aGaxPuMOf18lo8lc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loretta Sinigaglia,,2019-05-18,,,/loretta.sinigaglia.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1210&av=100013534782121&eav=AfZNnhbXIHEe4rYCTS8SkGxs2J82764qGvTMlaCKo4R5mfMV2b5aGaxPuMOf18lo8lc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Annamaria D'andrea,,2019-05-18,,,/annamaria.dandrea.121?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1210&av=100013534782121&eav=AfZNnhbXIHEe4rYCTS8SkGxs2J82764qGvTMlaCKo4R5mfMV2b5aGaxPuMOf18lo8lc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Annamaria D'andrea,,2019-05-18,,,/annamaria.dandrea.121?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1210&av=100013534782121&eav=AfZNnhbXIHEe4rYCTS8SkGxs2J82764qGvTMlaCKo4R5mfMV2b5aGaxPuMOf18lo8lc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Adry Adry,,2019-05-18,,,/profile.php?id=100008429534915&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1210&av=100013534782121&eav=AfZNnhbXIHEe4rYCTS8SkGxs2J82764qGvTMlaCKo4R5mfMV2b5aGaxPuMOf18lo8lc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luca DAndrea,,2019-05-18,,attento matte che l'ultima settimane saranno solo attachi contro di te,/profile.php?id=100008439273384&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1210&av=100013534782121&eav=AfZNnhbXIHEe4rYCTS8SkGxs2J82764qGvTMlaCKo4R5mfMV2b5aGaxPuMOf18lo8lc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabio Serzio,ROOT,2019-05-18,5,"10 mila, niente più",/fabio.serzio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517323155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA5z4skDPCk5_GB&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gio Magro,Fabio Serzio,2019-05-18,,Fabio Serzio sempre meglio..eravamo 4 amici al bar...,/profile.php?id=100008937103824&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517323155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA5z4skDPCk5_GB&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Fabio Serzio,Fabio Serzio,2019-05-18,,"Gio Magro non sono solito rispondere ai troll, ma ti dico che hai fatto bene ad andare al bar",/fabio.serzio?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622517323155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQA5z4skDPCk5_GB&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolo Baltieri,,2019-05-18,,,/profile.php?id=100011392558215&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1220&av=100013534782121&eav=AfaETOn5iPMONaWjwm42LU1Z2UVbf3LWbNoeBROCWc_eagj2VSEdbPoZ5d3iFmN-SYk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Pietronudo,,2019-05-18,,,/patrizia.pietronudo.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1220&av=100013534782121&eav=AfaETOn5iPMONaWjwm42LU1Z2UVbf3LWbNoeBROCWc_eagj2VSEdbPoZ5d3iFmN-SYk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Pietronudo,,2019-05-18,,,/patrizia.pietronudo.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1220&av=100013534782121&eav=AfaETOn5iPMONaWjwm42LU1Z2UVbf3LWbNoeBROCWc_eagj2VSEdbPoZ5d3iFmN-SYk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Taccola,,2019-05-18,,,/profile.php?id=100009048847068&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1220&av=100013534782121&eav=AfaETOn5iPMONaWjwm42LU1Z2UVbf3LWbNoeBROCWc_eagj2VSEdbPoZ5d3iFmN-SYk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristiano Sartori,,2019-05-18,5,I 5 STELLE NELLENFOGNE,/cristiano.sartori.5095?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1220&av=100013534782121&eav=AfaETOn5iPMONaWjwm42LU1Z2UVbf3LWbNoeBROCWc_eagj2VSEdbPoZ5d3iFmN-SYk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Martina Jedličková Leinerová,,2019-05-18,1,🇨🇿❤🇮🇹,/martina.leinerova?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1220&av=100013534782121&eav=AfaETOn5iPMONaWjwm42LU1Z2UVbf3LWbNoeBROCWc_eagj2VSEdbPoZ5d3iFmN-SYk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rinaldo Signoria,,2019-05-18,1,,/rinaldo.signoria.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1220&av=100013534782121&eav=AfaETOn5iPMONaWjwm42LU1Z2UVbf3LWbNoeBROCWc_eagj2VSEdbPoZ5d3iFmN-SYk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loretta Lonardi,,2019-05-18,,,/loretta.lonardi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1220&av=100013534782121&eav=AfaETOn5iPMONaWjwm42LU1Z2UVbf3LWbNoeBROCWc_eagj2VSEdbPoZ5d3iFmN-SYk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loretta Lonardi,,2019-05-18,,,/loretta.lonardi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1220&av=100013534782121&eav=AfaETOn5iPMONaWjwm42LU1Z2UVbf3LWbNoeBROCWc_eagj2VSEdbPoZ5d3iFmN-SYk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loretta Lonardi,,2019-05-18,,,/loretta.lonardi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1220&av=100013534782121&eav=AfaETOn5iPMONaWjwm42LU1Z2UVbf3LWbNoeBROCWc_eagj2VSEdbPoZ5d3iFmN-SYk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppina Santoro,,2019-05-18,,,/giuseppina.santoro.9847?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1230&av=100013534782121&eav=AfbVRQ2jlel_5hDy1OenOiIKcMgyp3vqHgqTnddPlAAV7WnpwBlG03QjgEdGQd1YTdM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mara Cavana,,2019-05-18,,,/mara.cavana?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1230&av=100013534782121&eav=AfbVRQ2jlel_5hDy1OenOiIKcMgyp3vqHgqTnddPlAAV7WnpwBlG03QjgEdGQd1YTdM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Teresa Desiderio,,2019-05-18,,,/teresa.desiderio.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1230&av=100013534782121&eav=AfbVRQ2jlel_5hDy1OenOiIKcMgyp3vqHgqTnddPlAAV7WnpwBlG03QjgEdGQd1YTdM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cobrescu Aurelian Si Maria,,2019-05-18,,,/aurelian.cobrescu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1230&av=100013534782121&eav=AfbVRQ2jlel_5hDy1OenOiIKcMgyp3vqHgqTnddPlAAV7WnpwBlG03QjgEdGQd1YTdM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Ribeiro De Oliveira,,2019-05-18,,,/daniela.r.deoliveira?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1230&av=100013534782121&eav=AfbVRQ2jlel_5hDy1OenOiIKcMgyp3vqHgqTnddPlAAV7WnpwBlG03QjgEdGQd1YTdM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Soleado,,2019-05-18,,,/emanuela.soleado?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1230&av=100013534782121&eav=AfbVRQ2jlel_5hDy1OenOiIKcMgyp3vqHgqTnddPlAAV7WnpwBlG03QjgEdGQd1YTdM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Rossano,,2019-05-18,,,/viviana.rossano.96?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1230&av=100013534782121&eav=AfbVRQ2jlel_5hDy1OenOiIKcMgyp3vqHgqTnddPlAAV7WnpwBlG03QjgEdGQd1YTdM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Ribeiro De Oliveira,,2019-05-18,,,/daniela.r.deoliveira?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1230&av=100013534782121&eav=AfbVRQ2jlel_5hDy1OenOiIKcMgyp3vqHgqTnddPlAAV7WnpwBlG03QjgEdGQd1YTdM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Ribeiro De Oliveira,,2019-05-18,,,/daniela.r.deoliveira?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1230&av=100013534782121&eav=AfbVRQ2jlel_5hDy1OenOiIKcMgyp3vqHgqTnddPlAAV7WnpwBlG03QjgEdGQd1YTdM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Tardini,,2019-05-18,,,/maria.tardini.94?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1230&av=100013534782121&eav=AfbVRQ2jlel_5hDy1OenOiIKcMgyp3vqHgqTnddPlAAV7WnpwBlG03QjgEdGQd1YTdM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carmelo Cortese,ROOT,2019-05-18,1,"la piazza è vuota sono di più gli striscioni , buffoni",/benedetto.cortese?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301909324031547&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHfOaxMUca5LMD&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mario Bartolomei,Carmelo Cortese,2019-05-18,,Carmelo Cortese,/mario.bartolomei.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301909324031547&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHfOaxMUca5LMD&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mario Bartolomei,Carmelo Cortese,2019-05-18,,,/mario.bartolomei.14?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301909324031547&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHfOaxMUca5LMD&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Carmelo Cortese,Carmelo Cortese,2019-05-18,,Mario Bartolomei fai ridere minchione e ignorante,/benedetto.cortese?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301909324031547&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDHfOaxMUca5LMD&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Tamara Delogu,,2019-05-18,,,/tamara.delogu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1240&av=100013534782121&eav=AfYzKotPL7WdVizC5CdfX4bJeF33mIz9JOp-Ckf7RQBd--AzxPMH7FF3SmwhQ2_fj-M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Domenica Sisto,,2019-05-18,,Rosiconi di sx guardate il video altrimenti poi state male #salvininonmollare,/domenica.sisto.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1240&av=100013534782121&eav=AfYzKotPL7WdVizC5CdfX4bJeF33mIz9JOp-Ckf7RQBd--AzxPMH7FF3SmwhQ2_fj-M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Aude Anquetil,,2019-05-18,,,/aude.anquetil.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1240&av=100013534782121&eav=AfYzKotPL7WdVizC5CdfX4bJeF33mIz9JOp-Ckf7RQBd--AzxPMH7FF3SmwhQ2_fj-M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Bonomi,,2019-05-18,,,/antonella.bonomi.98?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1240&av=100013534782121&eav=AfYzKotPL7WdVizC5CdfX4bJeF33mIz9JOp-Ckf7RQBd--AzxPMH7FF3SmwhQ2_fj-M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mariangela Vannucchi,,2019-05-18,,,/mariangela.vannucchi.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1240&av=100013534782121&eav=AfYzKotPL7WdVizC5CdfX4bJeF33mIz9JOp-Ckf7RQBd--AzxPMH7FF3SmwhQ2_fj-M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Davide Scarponi,,2019-05-18,2,Viva SALVINI,/davide.scarponi.79?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1240&av=100013534782121&eav=AfYzKotPL7WdVizC5CdfX4bJeF33mIz9JOp-Ckf7RQBd--AzxPMH7FF3SmwhQ2_fj-M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonino Maccarrone,,2019-05-18,,,/antonino.maccarrone.56?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1240&av=100013534782121&eav=AfYzKotPL7WdVizC5CdfX4bJeF33mIz9JOp-Ckf7RQBd--AzxPMH7FF3SmwhQ2_fj-M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1240&av=100013534782121&eav=AfYzKotPL7WdVizC5CdfX4bJeF33mIz9JOp-Ckf7RQBd--AzxPMH7FF3SmwhQ2_fj-M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Bovolenta,,2019-05-18,,,/bovolenta.emanuela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1240&av=100013534782121&eav=AfYzKotPL7WdVizC5CdfX4bJeF33mIz9JOp-Ckf7RQBd--AzxPMH7FF3SmwhQ2_fj-M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Bovolenta,,2019-05-18,,,/bovolenta.emanuela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1240&av=100013534782121&eav=AfYzKotPL7WdVizC5CdfX4bJeF33mIz9JOp-Ckf7RQBd--AzxPMH7FF3SmwhQ2_fj-M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lilly Pagliuca,,2019-05-18,6,Che spettacolo 😍,/pasqualinapaol.pagliuca?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=570&av=100013534782121&eav=Afb6X72tKeoUtGHcDuPPr1iFjO_k9iQZnRolOrQyyDFcOTVTe6uNydARmiCM7NgKT60&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marta Franciosi,,2019-05-18,2,Mamma mia quanto gente .....grande #MatteoSalvini,/marta.franciosi.54?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=570&av=100013534782121&eav=Afb6X72tKeoUtGHcDuPPr1iFjO_k9iQZnRolOrQyyDFcOTVTe6uNydARmiCM7NgKT60&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Piero Delle Noci,,2019-05-18,1,Spero che qualcuno comincia a tremare,/piero.dellenoci?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=570&av=100013534782121&eav=Afb6X72tKeoUtGHcDuPPr1iFjO_k9iQZnRolOrQyyDFcOTVTe6uNydARmiCM7NgKT60&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvia Forno,,2019-05-18,1,,/silvia.forno.549?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=570&av=100013534782121&eav=Afb6X72tKeoUtGHcDuPPr1iFjO_k9iQZnRolOrQyyDFcOTVTe6uNydARmiCM7NgKT60&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Ragnolini,,2019-05-18,,,/paola.ragnolini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=570&av=100013534782121&eav=Afb6X72tKeoUtGHcDuPPr1iFjO_k9iQZnRolOrQyyDFcOTVTe6uNydARmiCM7NgKT60&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Modena,,2019-05-18,2,Grandi tenete duro... Io purtroppo non vi posso seguire fisicamente ma sono con voi...,/andrea.modena.12?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=570&av=100013534782121&eav=Afb6X72tKeoUtGHcDuPPr1iFjO_k9iQZnRolOrQyyDFcOTVTe6uNydARmiCM7NgKT60&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marilena Sganzerla,,2019-05-18,2,Che spettacolo. ..👏👏👏👍👍👍🍾❤,/profile.php?id=100009283989136&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=570&av=100013534782121&eav=Afb6X72tKeoUtGHcDuPPr1iFjO_k9iQZnRolOrQyyDFcOTVTe6uNydARmiCM7NgKT60&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Piana,,2019-05-18,1,Complimenti !!! Una folla immensa !! Quelli del pd se lo sognano .......,/patrizia.piana.334?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=570&av=100013534782121&eav=Afb6X72tKeoUtGHcDuPPr1iFjO_k9iQZnRolOrQyyDFcOTVTe6uNydARmiCM7NgKT60&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Bovolenta,,2019-05-18,,,/bovolenta.emanuela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1250&av=100013534782121&eav=AfaTFqKqiqsJNIvKtDH7ntlWchouKX3egDCHOBlz_Wg8KrwVrE--TWUuTQzHvjKRO8A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Grazia Cenicola,,2019-05-18,,,/mariagrazia.cenicola?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1250&av=100013534782121&eav=AfaTFqKqiqsJNIvKtDH7ntlWchouKX3egDCHOBlz_Wg8KrwVrE--TWUuTQzHvjKRO8A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Bovolenta,,2019-05-18,,,/bovolenta.emanuela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1250&av=100013534782121&eav=AfaTFqKqiqsJNIvKtDH7ntlWchouKX3egDCHOBlz_Wg8KrwVrE--TWUuTQzHvjKRO8A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Bovolenta,,2019-05-18,,,/bovolenta.emanuela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1250&av=100013534782121&eav=AfaTFqKqiqsJNIvKtDH7ntlWchouKX3egDCHOBlz_Wg8KrwVrE--TWUuTQzHvjKRO8A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1250&av=100013534782121&eav=AfaTFqKqiqsJNIvKtDH7ntlWchouKX3egDCHOBlz_Wg8KrwVrE--TWUuTQzHvjKRO8A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Bovolenta,,2019-05-18,,,/bovolenta.emanuela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1250&av=100013534782121&eav=AfaTFqKqiqsJNIvKtDH7ntlWchouKX3egDCHOBlz_Wg8KrwVrE--TWUuTQzHvjKRO8A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Bovolenta,,2019-05-18,,,/bovolenta.emanuela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1250&av=100013534782121&eav=AfaTFqKqiqsJNIvKtDH7ntlWchouKX3egDCHOBlz_Wg8KrwVrE--TWUuTQzHvjKRO8A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Bovolenta,,2019-05-18,,,/bovolenta.emanuela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1250&av=100013534782121&eav=AfaTFqKqiqsJNIvKtDH7ntlWchouKX3egDCHOBlz_Wg8KrwVrE--TWUuTQzHvjKRO8A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Bovolenta,,2019-05-18,,,/bovolenta.emanuela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1250&av=100013534782121&eav=AfaTFqKqiqsJNIvKtDH7ntlWchouKX3egDCHOBlz_Wg8KrwVrE--TWUuTQzHvjKRO8A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Bovolenta,,2019-05-18,,,/bovolenta.emanuela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1250&av=100013534782121&eav=AfaTFqKqiqsJNIvKtDH7ntlWchouKX3egDCHOBlz_Wg8KrwVrE--TWUuTQzHvjKRO8A&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Bovolenta,,2019-05-18,,,/bovolenta.emanuela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1260&av=100013534782121&eav=AfZUwdyqERkZ7zB6NuvxTguj5jTbyXCo8AYkQzJ5ByQ20wG7fHX5cGSDqx-KcR92p0I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Bovolenta,,2019-05-18,,,/bovolenta.emanuela?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1260&av=100013534782121&eav=AfZUwdyqERkZ7zB6NuvxTguj5jTbyXCo8AYkQzJ5ByQ20wG7fHX5cGSDqx-KcR92p0I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Calciano,,2019-05-18,,,/maria.calciano.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1260&av=100013534782121&eav=AfZUwdyqERkZ7zB6NuvxTguj5jTbyXCo8AYkQzJ5ByQ20wG7fHX5cGSDqx-KcR92p0I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nadia Malini,,2019-05-18,,,/nadia.malini.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1260&av=100013534782121&eav=AfZUwdyqERkZ7zB6NuvxTguj5jTbyXCo8AYkQzJ5ByQ20wG7fHX5cGSDqx-KcR92p0I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1260&av=100013534782121&eav=AfZUwdyqERkZ7zB6NuvxTguj5jTbyXCo8AYkQzJ5ByQ20wG7fHX5cGSDqx-KcR92p0I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1260&av=100013534782121&eav=AfZUwdyqERkZ7zB6NuvxTguj5jTbyXCo8AYkQzJ5ByQ20wG7fHX5cGSDqx-KcR92p0I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1260&av=100013534782121&eav=AfZUwdyqERkZ7zB6NuvxTguj5jTbyXCo8AYkQzJ5ByQ20wG7fHX5cGSDqx-KcR92p0I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1260&av=100013534782121&eav=AfZUwdyqERkZ7zB6NuvxTguj5jTbyXCo8AYkQzJ5ByQ20wG7fHX5cGSDqx-KcR92p0I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carmela Luzzi,,2019-05-18,,,/carmelapooh?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1260&av=100013534782121&eav=AfZUwdyqERkZ7zB6NuvxTguj5jTbyXCo8AYkQzJ5ByQ20wG7fHX5cGSDqx-KcR92p0I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Miki Pellegrino,,2019-05-18,,,/miki.pellegrino.12?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1260&av=100013534782121&eav=AfZUwdyqERkZ7zB6NuvxTguj5jTbyXCo8AYkQzJ5ByQ20wG7fHX5cGSDqx-KcR92p0I&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paolo Venieri,ROOT,2019-05-18,1,Avanti col vento in poppa alla faccia di chi ci vuol male.,/paolo.venieri.5492?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301915900697556&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAeXhTMnu0tuRXB&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annita Terruli,Paolo Venieri,2019-05-18,,Paolo Venieri AZZ GIA ME LI VEDO IL CAPITANO CHE GUIDA LA NAVE DA CROCERA E IL BERLUSCA IN CAMERA CON....,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301915900697556&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAeXhTMnu0tuRXB&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolo Venieri,Paolo Venieri,2019-05-18,,"Annita Terruli mi ai fatto ridere, grazie.",/paolo.venieri.5492?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301915900697556&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAeXhTMnu0tuRXB&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paolo Venieri,Paolo Venieri,2019-05-18,,,/paolo.venieri.5492?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301915900697556&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAeXhTMnu0tuRXB&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1270&av=100013534782121&eav=AfZ8xHzvDStcfAc1pT8uHOKUQfiJYyvW2WXlGey-2q1GXvOfJbgO0q2FC_Ep7EHTwUM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1270&av=100013534782121&eav=AfZ8xHzvDStcfAc1pT8uHOKUQfiJYyvW2WXlGey-2q1GXvOfJbgO0q2FC_Ep7EHTwUM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1270&av=100013534782121&eav=AfZ8xHzvDStcfAc1pT8uHOKUQfiJYyvW2WXlGey-2q1GXvOfJbgO0q2FC_Ep7EHTwUM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1270&av=100013534782121&eav=AfZ8xHzvDStcfAc1pT8uHOKUQfiJYyvW2WXlGey-2q1GXvOfJbgO0q2FC_Ep7EHTwUM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1270&av=100013534782121&eav=AfZ8xHzvDStcfAc1pT8uHOKUQfiJYyvW2WXlGey-2q1GXvOfJbgO0q2FC_Ep7EHTwUM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1270&av=100013534782121&eav=AfZ8xHzvDStcfAc1pT8uHOKUQfiJYyvW2WXlGey-2q1GXvOfJbgO0q2FC_Ep7EHTwUM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1270&av=100013534782121&eav=AfZ8xHzvDStcfAc1pT8uHOKUQfiJYyvW2WXlGey-2q1GXvOfJbgO0q2FC_Ep7EHTwUM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1270&av=100013534782121&eav=AfZ8xHzvDStcfAc1pT8uHOKUQfiJYyvW2WXlGey-2q1GXvOfJbgO0q2FC_Ep7EHTwUM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1270&av=100013534782121&eav=AfZ8xHzvDStcfAc1pT8uHOKUQfiJYyvW2WXlGey-2q1GXvOfJbgO0q2FC_Ep7EHTwUM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1270&av=100013534782121&eav=AfZ8xHzvDStcfAc1pT8uHOKUQfiJYyvW2WXlGey-2q1GXvOfJbgO0q2FC_Ep7EHTwUM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1280&av=100013534782121&eav=AfbfaWi7meuT0NwIJ1ww0_sOWsEuYZeROrMtX1PwfV9FNg064JBvVi10efoe1iH7_wk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Dina Smadu,,2019-05-18,,,/dina.smadu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1280&av=100013534782121&eav=AfbfaWi7meuT0NwIJ1ww0_sOWsEuYZeROrMtX1PwfV9FNg064JBvVi10efoe1iH7_wk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1280&av=100013534782121&eav=AfbfaWi7meuT0NwIJ1ww0_sOWsEuYZeROrMtX1PwfV9FNg064JBvVi10efoe1iH7_wk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1280&av=100013534782121&eav=AfbfaWi7meuT0NwIJ1ww0_sOWsEuYZeROrMtX1PwfV9FNg064JBvVi10efoe1iH7_wk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1280&av=100013534782121&eav=AfbfaWi7meuT0NwIJ1ww0_sOWsEuYZeROrMtX1PwfV9FNg064JBvVi10efoe1iH7_wk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1280&av=100013534782121&eav=AfbfaWi7meuT0NwIJ1ww0_sOWsEuYZeROrMtX1PwfV9FNg064JBvVi10efoe1iH7_wk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Diodato,,2019-05-18,,,/raffaella.diodato?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1280&av=100013534782121&eav=AfbfaWi7meuT0NwIJ1ww0_sOWsEuYZeROrMtX1PwfV9FNg064JBvVi10efoe1iH7_wk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Katiuscia Esposto,,2019-05-18,,,/katiuscia.esposto?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1280&av=100013534782121&eav=AfbfaWi7meuT0NwIJ1ww0_sOWsEuYZeROrMtX1PwfV9FNg064JBvVi10efoe1iH7_wk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudio Roma,,2019-05-18,,,/claudio.roma.5602?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1280&av=100013534782121&eav=AfbfaWi7meuT0NwIJ1ww0_sOWsEuYZeROrMtX1PwfV9FNg064JBvVi10efoe1iH7_wk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lidia Agolli,,2019-05-18,,,/profile.php?id=100006810348667&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1280&av=100013534782121&eav=AfbfaWi7meuT0NwIJ1ww0_sOWsEuYZeROrMtX1PwfV9FNg064JBvVi10efoe1iH7_wk&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Anzalone,ROOT,2019-05-18,1,La testa dei leghisti va pulita e bene,/profile.php?id=100013485762681&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622543508155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDKWLbyBylZsoxF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Allegri Ciclone Yeuup Gianluca,Angela Anzalone,2019-05-18,,Angela Anzalone fascista,/gianluca.allegri.92?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622543508155&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDKWLbyBylZsoxF&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Red Anna,,2019-05-18,,,/Red.AnnaMaria?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1290&av=100013534782121&eav=AfZRSY6O7WnXqNCsqyklrDop2vVvEDesMmH_ETC2N56KScxuemzl6j3PvGzSswz1dMA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Doz,,2019-05-18,,,/profile.php?id=100011189832987&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1290&av=100013534782121&eav=AfZRSY6O7WnXqNCsqyklrDop2vVvEDesMmH_ETC2N56KScxuemzl6j3PvGzSswz1dMA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigia Pietrosanti,,2019-05-18,,,/luigia.pietrosanti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1290&av=100013534782121&eav=AfZRSY6O7WnXqNCsqyklrDop2vVvEDesMmH_ETC2N56KScxuemzl6j3PvGzSswz1dMA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigia Pietrosanti,,2019-05-18,,,/luigia.pietrosanti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1290&av=100013534782121&eav=AfZRSY6O7WnXqNCsqyklrDop2vVvEDesMmH_ETC2N56KScxuemzl6j3PvGzSswz1dMA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Ciucci,,2019-05-18,,,/silvana.ciucci?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1290&av=100013534782121&eav=AfZRSY6O7WnXqNCsqyklrDop2vVvEDesMmH_ETC2N56KScxuemzl6j3PvGzSswz1dMA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Ciucci,,2019-05-18,,,/silvana.ciucci?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1290&av=100013534782121&eav=AfZRSY6O7WnXqNCsqyklrDop2vVvEDesMmH_ETC2N56KScxuemzl6j3PvGzSswz1dMA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marina Vittori,,2019-05-18,,,/marina.vittori.90?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1290&av=100013534782121&eav=AfZRSY6O7WnXqNCsqyklrDop2vVvEDesMmH_ETC2N56KScxuemzl6j3PvGzSswz1dMA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigia Pietrosanti,,2019-05-18,,,/luigia.pietrosanti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1290&av=100013534782121&eav=AfZRSY6O7WnXqNCsqyklrDop2vVvEDesMmH_ETC2N56KScxuemzl6j3PvGzSswz1dMA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigia Pietrosanti,,2019-05-18,,,/luigia.pietrosanti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1290&av=100013534782121&eav=AfZRSY6O7WnXqNCsqyklrDop2vVvEDesMmH_ETC2N56KScxuemzl6j3PvGzSswz1dMA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigia Pietrosanti,,2019-05-18,,,/luigia.pietrosanti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1290&av=100013534782121&eav=AfZRSY6O7WnXqNCsqyklrDop2vVvEDesMmH_ETC2N56KScxuemzl6j3PvGzSswz1dMA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Buraschi,,2019-05-18,2,"Grande,grande non ci sono parole.",/roberto.buraschi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=580&av=100013534782121&eav=AfZDCovynPADKPiwt9e-eHd-LoEoFD9x_khVGvH7H9MQqNepEJgPr8UNYwhtGCQ94g0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelina Martinello,,2019-05-18,3,Bravo avanti cosi che sei grande Capitano 😘❤,/maria.martinello.90?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=580&av=100013534782121&eav=AfZDCovynPADKPiwt9e-eHd-LoEoFD9x_khVGvH7H9MQqNepEJgPr8UNYwhtGCQ94g0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carolina Parrilla,,2019-05-18,1,dimenticavo sono terrona ma ti voglio bene da sempre w la lega,/carolina.parrilla1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=580&av=100013534782121&eav=AfZDCovynPADKPiwt9e-eHd-LoEoFD9x_khVGvH7H9MQqNepEJgPr8UNYwhtGCQ94g0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elisabetta Ghini,,2019-05-18,2,Bravo Matteo! Il tuo successo te lo meriti tutto,/elisabetta.ghini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=580&av=100013534782121&eav=AfZDCovynPADKPiwt9e-eHd-LoEoFD9x_khVGvH7H9MQqNepEJgPr8UNYwhtGCQ94g0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Micò,,2019-05-18,1,GRANDE CAPITANOO,/angela.mico.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=580&av=100013534782121&eav=AfZDCovynPADKPiwt9e-eHd-LoEoFD9x_khVGvH7H9MQqNepEJgPr8UNYwhtGCQ94g0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Bresciani,,2019-05-18,2,Alla faccia di chi diceva della piazza vuota!,/roberto.bresciani.585?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=580&av=100013534782121&eav=AfZDCovynPADKPiwt9e-eHd-LoEoFD9x_khVGvH7H9MQqNepEJgPr8UNYwhtGCQ94g0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luisella Martinello,,2019-05-18,1,Vai capitano sei un grande,/luisella.martinello.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=580&av=100013534782121&eav=AfZDCovynPADKPiwt9e-eHd-LoEoFD9x_khVGvH7H9MQqNepEJgPr8UNYwhtGCQ94g0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Denny Galanello,,2019-05-18,4,Protesta PD per il troppo consenso,/denny.galanello?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=580&av=100013534782121&eav=AfZDCovynPADKPiwt9e-eHd-LoEoFD9x_khVGvH7H9MQqNepEJgPr8UNYwhtGCQ94g0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andreas Westermann,,2019-05-18,,Il tuo capitano è anche il nostro capitano!,/andre.kestermann.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1300&av=100013534782121&eav=AfbfDX_71Tg6XCO0IVHqSddGkjRJ77MrGqCFj6d-EAXQdXLuu3KdctlQMqLrpYEwvhI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Deleidi,,2019-05-18,,,/profile.php?id=100010254432432&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1300&av=100013534782121&eav=AfbfDX_71Tg6XCO0IVHqSddGkjRJ77MrGqCFj6d-EAXQdXLuu3KdctlQMqLrpYEwvhI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carlo Cinqueottobrenero Torrini,,2019-05-18,,Sinistri ite a casa..o al centro sociale...,/carlo.torrini.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1300&av=100013534782121&eav=AfbfDX_71Tg6XCO0IVHqSddGkjRJ77MrGqCFj6d-EAXQdXLuu3KdctlQMqLrpYEwvhI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Lievore,,2019-05-18,,,/monica.lievore.90?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1300&av=100013534782121&eav=AfbfDX_71Tg6XCO0IVHqSddGkjRJ77MrGqCFj6d-EAXQdXLuu3KdctlQMqLrpYEwvhI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Lievore,,2019-05-18,,,/monica.lievore.90?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1300&av=100013534782121&eav=AfbfDX_71Tg6XCO0IVHqSddGkjRJ77MrGqCFj6d-EAXQdXLuu3KdctlQMqLrpYEwvhI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alena Krišková,,2019-05-18,,,/alena.kriskova.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1300&av=100013534782121&eav=AfbfDX_71Tg6XCO0IVHqSddGkjRJ77MrGqCFj6d-EAXQdXLuu3KdctlQMqLrpYEwvhI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Napolitano,,2019-05-18,,,/giuseppe.napolitano.50596?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1300&av=100013534782121&eav=AfbfDX_71Tg6XCO0IVHqSddGkjRJ77MrGqCFj6d-EAXQdXLuu3KdctlQMqLrpYEwvhI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lidia Di Girolamo,,2019-05-18,,,/lidia.digirolamo.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1300&av=100013534782121&eav=AfbfDX_71Tg6XCO0IVHqSddGkjRJ77MrGqCFj6d-EAXQdXLuu3KdctlQMqLrpYEwvhI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marilena Grippo,,2019-05-18,,,/marilena.grippo.16?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1300&av=100013534782121&eav=AfbfDX_71Tg6XCO0IVHqSddGkjRJ77MrGqCFj6d-EAXQdXLuu3KdctlQMqLrpYEwvhI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Lievore,,2019-05-18,,,/monica.lievore.90?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1300&av=100013534782121&eav=AfbfDX_71Tg6XCO0IVHqSddGkjRJ77MrGqCFj6d-EAXQdXLuu3KdctlQMqLrpYEwvhI&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Galetto,,2019-05-18,,,/maurizio.galetto.50?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1310&av=100013534782121&eav=AfYAvfvSp-BaIv6OvvW7G0Eo1ESTuXpFnQ3WzM_f5pOCNa1P94YFfiAizRWBpoDH5go&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giancarla Bonacina,,2019-05-18,,,/profile.php?id=100008522460683&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1310&av=100013534782121&eav=AfYAvfvSp-BaIv6OvvW7G0Eo1ESTuXpFnQ3WzM_f5pOCNa1P94YFfiAizRWBpoDH5go&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudia Ocelot,,2019-05-18,,,/claudia.ocelot?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1310&av=100013534782121&eav=AfYAvfvSp-BaIv6OvvW7G0Eo1ESTuXpFnQ3WzM_f5pOCNa1P94YFfiAizRWBpoDH5go&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fati Rimi,,2019-05-18,,,/fati.rimi.52?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1310&av=100013534782121&eav=AfYAvfvSp-BaIv6OvvW7G0Eo1ESTuXpFnQ3WzM_f5pOCNa1P94YFfiAizRWBpoDH5go&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Delia Maria Tarazona,,2019-05-18,,,/deliamaria.tarazona?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1310&av=100013534782121&eav=AfYAvfvSp-BaIv6OvvW7G0Eo1ESTuXpFnQ3WzM_f5pOCNa1P94YFfiAizRWBpoDH5go&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Clara Callegari,,2019-05-18,,,/clara.callegari.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1310&av=100013534782121&eav=AfYAvfvSp-BaIv6OvvW7G0Eo1ESTuXpFnQ3WzM_f5pOCNa1P94YFfiAizRWBpoDH5go&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Esese Idiaghe Destiny,,2019-05-18,,Happy weekend,/eseseidiaghe.destiny?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1310&av=100013534782121&eav=AfYAvfvSp-BaIv6OvvW7G0Eo1ESTuXpFnQ3WzM_f5pOCNa1P94YFfiAizRWBpoDH5go&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Pirro,,2019-05-18,,,/paola.pirro.902?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1310&av=100013534782121&eav=AfYAvfvSp-BaIv6OvvW7G0Eo1ESTuXpFnQ3WzM_f5pOCNa1P94YFfiAizRWBpoDH5go&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Annamaria Di Palma,,2019-05-18,,,/annamaria.dipalma.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1310&av=100013534782121&eav=AfYAvfvSp-BaIv6OvvW7G0Eo1ESTuXpFnQ3WzM_f5pOCNa1P94YFfiAizRWBpoDH5go&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Lucchese,,2019-05-18,,,/maria.lucchese.37?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1310&av=100013534782121&eav=AfYAvfvSp-BaIv6OvvW7G0Eo1ESTuXpFnQ3WzM_f5pOCNa1P94YFfiAizRWBpoDH5go&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziella Abibi,ROOT,2019-05-18,2,Bravissimo Matteo fortissimo stupendo,/profile.php?id=100007268057085&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301906970698449&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQAS9D_tjwrTLw22&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annamaria Di Palma,,2019-05-18,,,/annamaria.dipalma.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1320&av=100013534782121&eav=AfZozb5BXlHHYGXfVA-YBx2fWQSeQBD5k4Ab5y1XPQp7NQqhVEsaRPNh8xTwXYcDtAU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Annamaria Di Palma,,2019-05-18,,,/annamaria.dipalma.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1320&av=100013534782121&eav=AfZozb5BXlHHYGXfVA-YBx2fWQSeQBD5k4Ab5y1XPQp7NQqhVEsaRPNh8xTwXYcDtAU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Merola,,2019-05-18,,,/maria.merola.315?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1320&av=100013534782121&eav=AfZozb5BXlHHYGXfVA-YBx2fWQSeQBD5k4Ab5y1XPQp7NQqhVEsaRPNh8xTwXYcDtAU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Faraone,,2019-05-18,1,Molla Di Maio Matteo,/lucia.faraone1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1320&av=100013534782121&eav=AfZozb5BXlHHYGXfVA-YBx2fWQSeQBD5k4Ab5y1XPQp7NQqhVEsaRPNh8xTwXYcDtAU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alberta Scavuzzo,,2019-05-18,,,/alberta.scavuzzo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1320&av=100013534782121&eav=AfZozb5BXlHHYGXfVA-YBx2fWQSeQBD5k4Ab5y1XPQp7NQqhVEsaRPNh8xTwXYcDtAU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Santise,,2019-05-18,,,/rosanna.santise?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1320&av=100013534782121&eav=AfZozb5BXlHHYGXfVA-YBx2fWQSeQBD5k4Ab5y1XPQp7NQqhVEsaRPNh8xTwXYcDtAU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Santise,,2019-05-18,,,/rosanna.santise?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1320&av=100013534782121&eav=AfZozb5BXlHHYGXfVA-YBx2fWQSeQBD5k4Ab5y1XPQp7NQqhVEsaRPNh8xTwXYcDtAU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Teresa Guerini Rocco,,2019-05-18,,,/teresa.guerinirocco.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1320&av=100013534782121&eav=AfZozb5BXlHHYGXfVA-YBx2fWQSeQBD5k4Ab5y1XPQp7NQqhVEsaRPNh8xTwXYcDtAU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Santise,,2019-05-18,,,/rosanna.santise?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1320&av=100013534782121&eav=AfZozb5BXlHHYGXfVA-YBx2fWQSeQBD5k4Ab5y1XPQp7NQqhVEsaRPNh8xTwXYcDtAU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liliana Sanua,,2019-05-18,,,/liliana.sanua?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1320&av=100013534782121&eav=AfZozb5BXlHHYGXfVA-YBx2fWQSeQBD5k4Ab5y1XPQp7NQqhVEsaRPNh8xTwXYcDtAU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vilma Pesenti,,2019-05-18,,,/vilma.pesenti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1330&av=100013534782121&eav=AfYl0O0nY9w4W6Ryhg0LOPksHAIPQkZv2kViOOv7bsNcLI7_-aajmCQ5EdiaiiAwfo8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nenè Rao,,2019-05-18,,,/nene.rao?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1330&av=100013534782121&eav=AfYl0O0nY9w4W6Ryhg0LOPksHAIPQkZv2kViOOv7bsNcLI7_-aajmCQ5EdiaiiAwfo8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nenè Rao,,2019-05-18,,,/nene.rao?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1330&av=100013534782121&eav=AfYl0O0nY9w4W6Ryhg0LOPksHAIPQkZv2kViOOv7bsNcLI7_-aajmCQ5EdiaiiAwfo8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liliana Tessera,,2019-05-18,,,/casa.delsorriso.796?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1330&av=100013534782121&eav=AfYl0O0nY9w4W6Ryhg0LOPksHAIPQkZv2kViOOv7bsNcLI7_-aajmCQ5EdiaiiAwfo8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liliana Tessera,,2019-05-18,,,/casa.delsorriso.796?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1330&av=100013534782121&eav=AfYl0O0nY9w4W6Ryhg0LOPksHAIPQkZv2kViOOv7bsNcLI7_-aajmCQ5EdiaiiAwfo8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nenè Rao,,2019-05-18,,,/nene.rao?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1330&av=100013534782121&eav=AfYl0O0nY9w4W6Ryhg0LOPksHAIPQkZv2kViOOv7bsNcLI7_-aajmCQ5EdiaiiAwfo8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Cesaroni,,2019-05-18,,,/carla.cesaroni.12?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1330&av=100013534782121&eav=AfYl0O0nY9w4W6Ryhg0LOPksHAIPQkZv2kViOOv7bsNcLI7_-aajmCQ5EdiaiiAwfo8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Concetta Anna Salzillo Nersita,,2019-05-18,,,/concettaanna.salzillonersita?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1330&av=100013534782121&eav=AfYl0O0nY9w4W6Ryhg0LOPksHAIPQkZv2kViOOv7bsNcLI7_-aajmCQ5EdiaiiAwfo8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Baba Sule Abass,,2019-05-18,,,/baba.sureabass?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1330&av=100013534782121&eav=AfYl0O0nY9w4W6Ryhg0LOPksHAIPQkZv2kViOOv7bsNcLI7_-aajmCQ5EdiaiiAwfo8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Concetta Anna Salzillo Nersita,,2019-05-18,,,/concettaanna.salzillonersita?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1330&av=100013534782121&eav=AfYl0O0nY9w4W6Ryhg0LOPksHAIPQkZv2kViOOv7bsNcLI7_-aajmCQ5EdiaiiAwfo8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mirko Di Stefano,ROOT,2019-05-18,1,Se sei senza parole leggile sul balconi !,/mirko.stefano.79?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622519013155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB4G2S6OfwoZEE_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Teo Pin,Mirko Di Stefano,2019-05-18,2,Mirko Di Stefano mongolo,/teo.pin70000?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622519013155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB4G2S6OfwoZEE_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Monica Vendrame,Mirko Di Stefano,2019-05-18,3,Se scrivono come te siamo a posto. La grammatica è morta,/monica.vendrame.31?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622519013155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB4G2S6OfwoZEE_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mirko Di Stefano,Mirko Di Stefano,2019-05-18,,Teo Pin 😘😘😘😘,/mirko.stefano.79?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622519013155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB4G2S6OfwoZEE_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mirko Di Stefano,Mirko Di Stefano,2019-05-18,,Monica Vendrame avrà fatto la stessa fine dei tuoi neuroni😘,/mirko.stefano.79?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622519013155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB4G2S6OfwoZEE_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giancarlo Perinelli,Mirko Di Stefano,2019-05-18,3,Mirko Di Stefano vai a cagare,/giancarlo.perinelli?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622519013155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB4G2S6OfwoZEE_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Monica Vendrame,Mirko Di Stefano,2019-05-18,,Oltre che ignorante sei pure maleducato,/monica.vendrame.31?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622519013155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB4G2S6OfwoZEE_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Mirko Di Stefano,Mirko Di Stefano,2019-05-18,,Monica Vendrame rispondo come il capitano tuo baci e sorrisi 😃,/mirko.stefano.79?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622519013155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB4G2S6OfwoZEE_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Mirko Di Stefano,2019-05-18,,Mirko Di Stefano,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622519013155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB4G2S6OfwoZEE_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Pellegrino,Mirko Di Stefano,2019-05-18,2,Mirko Di Stefano impara a scrivere asino!!!! Sul balcone o su i balconi .,/maria.pellegrino.9231?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622519013155&count=9&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB4G2S6OfwoZEE_&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Concetta Anna Salzillo Nersita,,2019-05-18,,,/concettaanna.salzillonersita?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1340&av=100013534782121&eav=AfYtTM4KrGpjy4Bejo1Onrw9_jGcgeORBwdnXBxMErwhx829UzjDve_6CoPaxWiNHo0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberto Mariotti,,2019-05-18,,,/roberto.mariotti.969?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1340&av=100013534782121&eav=AfYtTM4KrGpjy4Bejo1Onrw9_jGcgeORBwdnXBxMErwhx829UzjDve_6CoPaxWiNHo0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tania Ale Nico,,2019-05-18,,,/tania.ale.nico?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1340&av=100013534782121&eav=AfYtTM4KrGpjy4Bejo1Onrw9_jGcgeORBwdnXBxMErwhx829UzjDve_6CoPaxWiNHo0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelin Dellafiore,,2019-05-18,2,Grazie Matteo orgogliosa di appartenere alla LEGA,/angelinadellafiore?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1340&av=100013534782121&eav=AfYtTM4KrGpjy4Bejo1Onrw9_jGcgeORBwdnXBxMErwhx829UzjDve_6CoPaxWiNHo0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Baldini,,2019-05-18,,Che bella giornata ci hai regalato grazie Matteo ti vogliamo bene,/patrizia.baldini.98?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1340&av=100013534782121&eav=AfYtTM4KrGpjy4Bejo1Onrw9_jGcgeORBwdnXBxMErwhx829UzjDve_6CoPaxWiNHo0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziana Vigilante,,2019-05-18,,,/graziana.vigilante?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1340&av=100013534782121&eav=AfYtTM4KrGpjy4Bejo1Onrw9_jGcgeORBwdnXBxMErwhx829UzjDve_6CoPaxWiNHo0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziana Vigilante,,2019-05-18,,,/graziana.vigilante?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1340&av=100013534782121&eav=AfYtTM4KrGpjy4Bejo1Onrw9_jGcgeORBwdnXBxMErwhx829UzjDve_6CoPaxWiNHo0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Flora Fabio,,2019-05-18,,,/flora.gjoklekaj?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1340&av=100013534782121&eav=AfYtTM4KrGpjy4Bejo1Onrw9_jGcgeORBwdnXBxMErwhx829UzjDve_6CoPaxWiNHo0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Flora Fabio,,2019-05-18,,,/flora.gjoklekaj?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1340&av=100013534782121&eav=AfYtTM4KrGpjy4Bejo1Onrw9_jGcgeORBwdnXBxMErwhx829UzjDve_6CoPaxWiNHo0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Flora Fabio,,2019-05-18,,,/flora.gjoklekaj?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1340&av=100013534782121&eav=AfYtTM4KrGpjy4Bejo1Onrw9_jGcgeORBwdnXBxMErwhx829UzjDve_6CoPaxWiNHo0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Ditta,,2019-05-18,,,/profile.php?id=100004277445255&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1350&av=100013534782121&eav=AfaaN7cwqiQsaba9v69W2VPQm_mz8fcSEWT61Alm0x_Nsu6dUXG9EDnxFuJ64Mo_6Lg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Ditta,,2019-05-18,,,/profile.php?id=100004277445255&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1350&av=100013534782121&eav=AfaaN7cwqiQsaba9v69W2VPQm_mz8fcSEWT61Alm0x_Nsu6dUXG9EDnxFuJ64Mo_6Lg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Clara Capanni,,2019-05-18,,Matteo... lo sentiamo il tuo cuore! Ti ricompenseremo il 26,/clara.capanni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1350&av=100013534782121&eav=AfaaN7cwqiQsaba9v69W2VPQm_mz8fcSEWT61Alm0x_Nsu6dUXG9EDnxFuJ64Mo_6Lg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziana Vigilante,,2019-05-18,,,/graziana.vigilante?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1350&av=100013534782121&eav=AfaaN7cwqiQsaba9v69W2VPQm_mz8fcSEWT61Alm0x_Nsu6dUXG9EDnxFuJ64Mo_6Lg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelo Bravi,,2019-05-18,,,/angelo.bravi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1350&av=100013534782121&eav=AfaaN7cwqiQsaba9v69W2VPQm_mz8fcSEWT61Alm0x_Nsu6dUXG9EDnxFuJ64Mo_6Lg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Felicia Emilio Mazzei,,2019-05-18,,,/felicia.mazzei?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1350&av=100013534782121&eav=AfaaN7cwqiQsaba9v69W2VPQm_mz8fcSEWT61Alm0x_Nsu6dUXG9EDnxFuJ64Mo_6Lg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gennaro Libertone,,2019-05-18,,,/profile.php?id=100013384746560&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1350&av=100013534782121&eav=AfaaN7cwqiQsaba9v69W2VPQm_mz8fcSEWT61Alm0x_Nsu6dUXG9EDnxFuJ64Mo_6Lg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Cere,,2019-05-18,,,/daniela.cere.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1350&av=100013534782121&eav=AfaaN7cwqiQsaba9v69W2VPQm_mz8fcSEWT61Alm0x_Nsu6dUXG9EDnxFuJ64Mo_6Lg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rossana Bonora,,2019-05-18,,,/rossana.bonora?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1350&av=100013534782121&eav=AfaaN7cwqiQsaba9v69W2VPQm_mz8fcSEWT61Alm0x_Nsu6dUXG9EDnxFuJ64Mo_6Lg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luisa Mazzi,,2019-05-18,,,/luisa.mazzi.14?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1350&av=100013534782121&eav=AfaaN7cwqiQsaba9v69W2VPQm_mz8fcSEWT61Alm0x_Nsu6dUXG9EDnxFuJ64Mo_6Lg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Gioiello,ROOT,2019-05-18,,,/antonio.gioiello.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516628155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQASlvuBdHfzMTop&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sabrina Berty,Antonio Gioiello,2019-05-18,1,Lui vincerà!,/sabrina.bertolasi.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516628155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQASlvuBdHfzMTop&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rosalba Colleoni,,2019-05-18,,,/rosarossa.delniagara?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1360&av=100013534782121&eav=AfaVf7HNPT0b2WackcEStObloY4oTETemquoSG5MpaogtFBvWndiWCpWk8jFOGwOrGA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luisa Mazzi,,2019-05-18,,,/luisa.mazzi.14?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1360&av=100013534782121&eav=AfaVf7HNPT0b2WackcEStObloY4oTETemquoSG5MpaogtFBvWndiWCpWk8jFOGwOrGA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Lucchiari,,2019-05-18,,,/gabriella.lucchiari.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1360&av=100013534782121&eav=AfaVf7HNPT0b2WackcEStObloY4oTETemquoSG5MpaogtFBvWndiWCpWk8jFOGwOrGA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liliana Tessera,,2019-05-18,,,/casa.delsorriso.796?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1360&av=100013534782121&eav=AfaVf7HNPT0b2WackcEStObloY4oTETemquoSG5MpaogtFBvWndiWCpWk8jFOGwOrGA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Longu,,2019-05-18,,,/cristina.longu.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1360&av=100013534782121&eav=AfaVf7HNPT0b2WackcEStObloY4oTETemquoSG5MpaogtFBvWndiWCpWk8jFOGwOrGA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maura Prati,,2019-05-18,,,/maura.prati.98?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1360&av=100013534782121&eav=AfaVf7HNPT0b2WackcEStObloY4oTETemquoSG5MpaogtFBvWndiWCpWk8jFOGwOrGA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Longu,,2019-05-18,,,/cristina.longu.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1360&av=100013534782121&eav=AfaVf7HNPT0b2WackcEStObloY4oTETemquoSG5MpaogtFBvWndiWCpWk8jFOGwOrGA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Miceli,,2019-05-18,,,/carla.miceli.54?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1360&av=100013534782121&eav=AfaVf7HNPT0b2WackcEStObloY4oTETemquoSG5MpaogtFBvWndiWCpWk8jFOGwOrGA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Margherita Puma,,2019-05-18,,,/margherita.puma?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1360&av=100013534782121&eav=AfaVf7HNPT0b2WackcEStObloY4oTETemquoSG5MpaogtFBvWndiWCpWk8jFOGwOrGA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,LOVE YOU SO MUCH 💖💖💖,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1360&av=100013534782121&eav=AfaVf7HNPT0b2WackcEStObloY4oTETemquoSG5MpaogtFBvWndiWCpWk8jFOGwOrGA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Imelde Braghieri,,2019-05-18,,,/profile.php?id=100009867585976&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1370&av=100013534782121&eav=Afa6A2ZcuCqVyGXkExlpPf0N_ZBTZNFJllu_rgtCekY-c386eqKWecECl0aNcYIXNjc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Grazia Benincasa,,2019-05-18,,,/mariagrazia.benincasa.39?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1370&av=100013534782121&eav=Afa6A2ZcuCqVyGXkExlpPf0N_ZBTZNFJllu_rgtCekY-c386eqKWecECl0aNcYIXNjc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Imelde Braghieri,,2019-05-18,,,/profile.php?id=100009867585976&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1370&av=100013534782121&eav=Afa6A2ZcuCqVyGXkExlpPf0N_ZBTZNFJllu_rgtCekY-c386eqKWecECl0aNcYIXNjc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Fontana,,2019-05-18,,,/andrea.fontana.319247?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1370&av=100013534782121&eav=Afa6A2ZcuCqVyGXkExlpPf0N_ZBTZNFJllu_rgtCekY-c386eqKWecECl0aNcYIXNjc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Dany Dany,,2019-05-18,,,/dany.pichan?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1370&av=100013534782121&eav=Afa6A2ZcuCqVyGXkExlpPf0N_ZBTZNFJllu_rgtCekY-c386eqKWecECl0aNcYIXNjc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Dany Dany,,2019-05-18,,,/dany.pichan?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1370&av=100013534782121&eav=Afa6A2ZcuCqVyGXkExlpPf0N_ZBTZNFJllu_rgtCekY-c386eqKWecECl0aNcYIXNjc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary Luzz,,2019-05-18,,,/mary.luzz.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1370&av=100013534782121&eav=Afa6A2ZcuCqVyGXkExlpPf0N_ZBTZNFJllu_rgtCekY-c386eqKWecECl0aNcYIXNjc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sonia Fanton,,2019-05-18,,,/sonia.fanton.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1370&av=100013534782121&eav=Afa6A2ZcuCqVyGXkExlpPf0N_ZBTZNFJllu_rgtCekY-c386eqKWecECl0aNcYIXNjc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Deborah Lo Votrico,,2019-05-18,,,/profile.php?id=100009264548012&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1370&av=100013534782121&eav=Afa6A2ZcuCqVyGXkExlpPf0N_ZBTZNFJllu_rgtCekY-c386eqKWecECl0aNcYIXNjc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Fiorentino,,2019-05-18,,,/francesca.fiorentino.9638?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1370&av=100013534782121&eav=Afa6A2ZcuCqVyGXkExlpPf0N_ZBTZNFJllu_rgtCekY-c386eqKWecECl0aNcYIXNjc&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Gioiello,ROOT,2019-05-18,,,/antonio.gioiello.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516628155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQASlvuBdHfzMTop&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sabrina Berty,Antonio Gioiello,2019-05-18,1,Lui vincerà!,/sabrina.bertolasi.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516628155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQASlvuBdHfzMTop&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giovy Canciello,,2019-05-18,,,/mgiovanna.canciello?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1380&av=100013534782121&eav=AfYkmFrPAOKS781JVc_UmP9R0VXYyiYU2RG3108gQBVZEIbmW9tGSDMozcaItKR1pWo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fernanda Lenzi,,2019-05-18,,,/fernanda.lenzi.750?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1380&av=100013534782121&eav=AfYkmFrPAOKS781JVc_UmP9R0VXYyiYU2RG3108gQBVZEIbmW9tGSDMozcaItKR1pWo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carole Compostella,,2019-05-18,,,/carole.compostella.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1380&av=100013534782121&eav=AfYkmFrPAOKS781JVc_UmP9R0VXYyiYU2RG3108gQBVZEIbmW9tGSDMozcaItKR1pWo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carole Compostella,,2019-05-18,,,/carole.compostella.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1380&av=100013534782121&eav=AfYkmFrPAOKS781JVc_UmP9R0VXYyiYU2RG3108gQBVZEIbmW9tGSDMozcaItKR1pWo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sonia Pierosara,,2019-05-18,,,/sonia.pierosara.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1380&av=100013534782121&eav=AfYkmFrPAOKS781JVc_UmP9R0VXYyiYU2RG3108gQBVZEIbmW9tGSDMozcaItKR1pWo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Palmieri,,2019-05-18,,,/marco.palmieri.3979489?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1380&av=100013534782121&eav=AfYkmFrPAOKS781JVc_UmP9R0VXYyiYU2RG3108gQBVZEIbmW9tGSDMozcaItKR1pWo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elda Callone,,2019-05-18,,,/profile.php?id=100009307000621&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1380&av=100013534782121&eav=AfYkmFrPAOKS781JVc_UmP9R0VXYyiYU2RG3108gQBVZEIbmW9tGSDMozcaItKR1pWo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuliana Pansi,,2019-05-18,,,/giuliana.pansi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1380&av=100013534782121&eav=AfYkmFrPAOKS781JVc_UmP9R0VXYyiYU2RG3108gQBVZEIbmW9tGSDMozcaItKR1pWo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuliana Pansi,,2019-05-18,,,/giuliana.pansi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1380&av=100013534782121&eav=AfYkmFrPAOKS781JVc_UmP9R0VXYyiYU2RG3108gQBVZEIbmW9tGSDMozcaItKR1pWo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rita Tosti,,2019-05-18,,,/profile.php?id=100009349764932&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1380&av=100013534782121&eav=AfYkmFrPAOKS781JVc_UmP9R0VXYyiYU2RG3108gQBVZEIbmW9tGSDMozcaItKR1pWo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luisella Martinello,,2019-05-18,1,Vai capitano sei un grande,/luisella.martinello.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=590&av=100013534782121&eav=Afbf2HOBX2S8g7qSPofno7zc8p0q0RyJNLA_0BHwQ_jsZObtaUU7oR9xJWyWyUmnVtQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Denny Galanello,,2019-05-18,4,Protesta PD per il troppo consenso,/denny.galanello?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=590&av=100013534782121&eav=Afbf2HOBX2S8g7qSPofno7zc8p0q0RyJNLA_0BHwQ_jsZObtaUU7oR9xJWyWyUmnVtQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tania Torres,,2019-05-18,1,"Anche io, senza parole.",/tania.torres83?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=590&av=100013534782121&eav=Afbf2HOBX2S8g7qSPofno7zc8p0q0RyJNLA_0BHwQ_jsZObtaUU7oR9xJWyWyUmnVtQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gaetano Barbagallo,,2019-05-18,1,Hanno stimato il numero di partecipanti?,/gaetano.barbagallo.948?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=590&av=100013534782121&eav=Afbf2HOBX2S8g7qSPofno7zc8p0q0RyJNLA_0BHwQ_jsZObtaUU7oR9xJWyWyUmnVtQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Luna Nistri,,2019-05-18,2,,/annaluna.nistri?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=590&av=100013534782121&eav=Afbf2HOBX2S8g7qSPofno7zc8p0q0RyJNLA_0BHwQ_jsZObtaUU7oR9xJWyWyUmnVtQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patricia Impieri,,2019-05-18,1,"orgogliosa di avere un ministro in gamba ,coerente, lavoratore .avanti tutta.",/patricia.impieri?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=590&av=100013534782121&eav=Afbf2HOBX2S8g7qSPofno7zc8p0q0RyJNLA_0BHwQ_jsZObtaUU7oR9xJWyWyUmnVtQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Barbara Mattei,,2019-05-18,1,Ti meriti tutto questo Matteo.... ❤️,/barbara.mattei1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=590&av=100013534782121&eav=Afbf2HOBX2S8g7qSPofno7zc8p0q0RyJNLA_0BHwQ_jsZObtaUU7oR9xJWyWyUmnVtQ&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Meloni,,2019-05-18,,,/elena.meloni.923?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1390&av=100013534782121&eav=AfaAcseriPWYKfUaLCRfnuj53y7v77UcsFioDgTCxq_vPHlUm24F9C35co8j08n19Hs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maura Innocenti,,2019-05-18,,,/maura.innocenti.92?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1390&av=100013534782121&eav=AfaAcseriPWYKfUaLCRfnuj53y7v77UcsFioDgTCxq_vPHlUm24F9C35co8j08n19Hs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Asinka Muthumala,,2019-05-18,,,/asinka.jayadinu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1390&av=100013534782121&eav=AfaAcseriPWYKfUaLCRfnuj53y7v77UcsFioDgTCxq_vPHlUm24F9C35co8j08n19Hs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Meloni,,2019-05-18,,,/elena.meloni.923?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1390&av=100013534782121&eav=AfaAcseriPWYKfUaLCRfnuj53y7v77UcsFioDgTCxq_vPHlUm24F9C35co8j08n19Hs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianna Castelli,,2019-05-18,,,/gianna.castelli.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1390&av=100013534782121&eav=AfaAcseriPWYKfUaLCRfnuj53y7v77UcsFioDgTCxq_vPHlUm24F9C35co8j08n19Hs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Edoardo Mario D Elia,,2019-05-18,,,/edoardomario.delia.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1390&av=100013534782121&eav=AfaAcseriPWYKfUaLCRfnuj53y7v77UcsFioDgTCxq_vPHlUm24F9C35co8j08n19Hs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Gavi,,2019-05-18,,,/paola.gavi.58?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1390&av=100013534782121&eav=AfaAcseriPWYKfUaLCRfnuj53y7v77UcsFioDgTCxq_vPHlUm24F9C35co8j08n19Hs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppina Arcangeli,,2019-05-18,,,/profile.php?id=100006914506870&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1390&av=100013534782121&eav=AfaAcseriPWYKfUaLCRfnuj53y7v77UcsFioDgTCxq_vPHlUm24F9C35co8j08n19Hs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giusy Geraci,,2019-05-18,,,/giusy.geraci.792?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1390&av=100013534782121&eav=AfaAcseriPWYKfUaLCRfnuj53y7v77UcsFioDgTCxq_vPHlUm24F9C35co8j08n19Hs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Horobet Alexandra,,2019-05-18,,,/alexandra.horobet?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1390&av=100013534782121&eav=AfaAcseriPWYKfUaLCRfnuj53y7v77UcsFioDgTCxq_vPHlUm24F9C35co8j08n19Hs&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lia Amalia,,2019-05-18,,,/lia.amalia.543?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1400&av=100013534782121&eav=AfasN3qwN_ITyZlAp7-G5V1QlC_6JwsQUISCHoV3iYCx9XOo_DvTZqLpK0KjM11OuKQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lia Amalia,,2019-05-18,,,/lia.amalia.543?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1400&av=100013534782121&eav=AfasN3qwN_ITyZlAp7-G5V1QlC_6JwsQUISCHoV3iYCx9XOo_DvTZqLpK0KjM11OuKQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Titti Ti,,2019-05-18,,,/titti.ti.520?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1400&av=100013534782121&eav=AfasN3qwN_ITyZlAp7-G5V1QlC_6JwsQUISCHoV3iYCx9XOo_DvTZqLpK0KjM11OuKQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Dory Deglielfi,,2019-05-18,2,Sempre disponibile con tutti 🙏🏻👏🏼,/Dorydeglielfi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1400&av=100013534782121&eav=AfasN3qwN_ITyZlAp7-G5V1QlC_6JwsQUISCHoV3iYCx9XOo_DvTZqLpK0KjM11OuKQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Scafetta,,2019-05-18,1,"Troppo grande il nostro capitano, vai iii II!!!!!",/giuseppe.scafetta.10?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1400&av=100013534782121&eav=AfasN3qwN_ITyZlAp7-G5V1QlC_6JwsQUISCHoV3iYCx9XOo_DvTZqLpK0KjM11OuKQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Moni Moni,,2019-05-18,,,/monica.grassullo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1400&av=100013534782121&eav=AfasN3qwN_ITyZlAp7-G5V1QlC_6JwsQUISCHoV3iYCx9XOo_DvTZqLpK0KjM11OuKQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Moni Moni,,2019-05-18,,,/monica.grassullo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1400&av=100013534782121&eav=AfasN3qwN_ITyZlAp7-G5V1QlC_6JwsQUISCHoV3iYCx9XOo_DvTZqLpK0KjM11OuKQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Moni Moni,,2019-05-18,,,/monica.grassullo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1400&av=100013534782121&eav=AfasN3qwN_ITyZlAp7-G5V1QlC_6JwsQUISCHoV3iYCx9XOo_DvTZqLpK0KjM11OuKQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alice Kelli,,2019-05-18,,,/alice.kelli.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1400&av=100013534782121&eav=AfasN3qwN_ITyZlAp7-G5V1QlC_6JwsQUISCHoV3iYCx9XOo_DvTZqLpK0KjM11OuKQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alice Kelli,,2019-05-18,,,/alice.kelli.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1400&av=100013534782121&eav=AfasN3qwN_ITyZlAp7-G5V1QlC_6JwsQUISCHoV3iYCx9XOo_DvTZqLpK0KjM11OuKQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonio Gioiello,ROOT,2019-05-18,,,/antonio.gioiello.5?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516628155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQASlvuBdHfzMTop&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Sabrina Berty,Antonio Gioiello,2019-05-18,1,Lui vincerà!,/sabrina.bertolasi.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622516628155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQASlvuBdHfzMTop&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Enza Minoldi,,2019-05-18,,,/enza.minoldi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1410&av=100013534782121&eav=AfZ9Bh9WvoT0HPGqmkZOhxJs5CjIUJcbXWcx8QYA0FsyE-4hFyiV2DDTcvYKwAF-NMU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Enza Minoldi,,2019-05-18,,,/enza.minoldi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1410&av=100013534782121&eav=AfZ9Bh9WvoT0HPGqmkZOhxJs5CjIUJcbXWcx8QYA0FsyE-4hFyiV2DDTcvYKwAF-NMU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Drago,,2019-05-18,,,/maria.drago.9083?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1410&av=100013534782121&eav=AfZ9Bh9WvoT0HPGqmkZOhxJs5CjIUJcbXWcx8QYA0FsyE-4hFyiV2DDTcvYKwAF-NMU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Ignazia Ghisu,,2019-05-18,,,/giovanna.i.ghisu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1410&av=100013534782121&eav=AfZ9Bh9WvoT0HPGqmkZOhxJs5CjIUJcbXWcx8QYA0FsyE-4hFyiV2DDTcvYKwAF-NMU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Colombo Laura,,2019-05-18,,,/chiara.alba.754?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1410&av=100013534782121&eav=AfZ9Bh9WvoT0HPGqmkZOhxJs5CjIUJcbXWcx8QYA0FsyE-4hFyiV2DDTcvYKwAF-NMU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Drago,,2019-05-18,,,/maria.drago.9083?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1410&av=100013534782121&eav=AfZ9Bh9WvoT0HPGqmkZOhxJs5CjIUJcbXWcx8QYA0FsyE-4hFyiV2DDTcvYKwAF-NMU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Kàris Pellegrino,,2019-05-18,,,/karis.pellegrino?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1410&av=100013534782121&eav=AfZ9Bh9WvoT0HPGqmkZOhxJs5CjIUJcbXWcx8QYA0FsyE-4hFyiV2DDTcvYKwAF-NMU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Drago,,2019-05-18,,,/maria.drago.9083?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1410&av=100013534782121&eav=AfZ9Bh9WvoT0HPGqmkZOhxJs5CjIUJcbXWcx8QYA0FsyE-4hFyiV2DDTcvYKwAF-NMU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Enkeleda Luniku Nani,,2019-05-18,,,/enkeleda.nani?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1410&av=100013534782121&eav=AfZ9Bh9WvoT0HPGqmkZOhxJs5CjIUJcbXWcx8QYA0FsyE-4hFyiV2DDTcvYKwAF-NMU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Francone,,2019-05-18,,,/emanuela.francone.319?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1410&av=100013534782121&eav=AfZ9Bh9WvoT0HPGqmkZOhxJs5CjIUJcbXWcx8QYA0FsyE-4hFyiV2DDTcvYKwAF-NMU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcus Ulpius Sassano,,2019-05-18,2,"Forza Matteo, forza LEGA 😊😊💪💪✌✌✌",/marcus.sassano?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=600&av=100013534782121&eav=AfaVzTaQsBC-rA7-e3e_M1b9dlfHJ9OcN2XkD6A7hXqoLgPuWIWFWrAuHYoBzu4OdhI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Squeo,,2019-05-18,,,/daniela.squeo.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=600&av=100013534782121&eav=AfaVzTaQsBC-rA7-e3e_M1b9dlfHJ9OcN2XkD6A7hXqoLgPuWIWFWrAuHYoBzu4OdhI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Leonardo Sadori,,2019-05-18,2,"Bravi, ma e' ora che mandate a fanculoaDi Maio e company.",/profile.php?id=100005462981469&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=600&av=100013534782121&eav=AfaVzTaQsBC-rA7-e3e_M1b9dlfHJ9OcN2XkD6A7hXqoLgPuWIWFWrAuHYoBzu4OdhI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Guarino,,2019-05-18,1,Cosa diranno i tg?,/antonella.guarino.587?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=600&av=100013534782121&eav=AfaVzTaQsBC-rA7-e3e_M1b9dlfHJ9OcN2XkD6A7hXqoLgPuWIWFWrAuHYoBzu4OdhI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Kostas Pats,,2019-05-18,1,Grande Matteo..i Greci con te,/kostas.bianconero?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=600&av=100013534782121&eav=AfaVzTaQsBC-rA7-e3e_M1b9dlfHJ9OcN2XkD6A7hXqoLgPuWIWFWrAuHYoBzu4OdhI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sergio Mentasti,,2019-05-18,,,/profile.php?id=100009417086062&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=600&av=100013534782121&eav=AfaVzTaQsBC-rA7-e3e_M1b9dlfHJ9OcN2XkD6A7hXqoLgPuWIWFWrAuHYoBzu4OdhI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sergio Mentasti,,2019-05-18,,,/profile.php?id=100009417086062&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=600&av=100013534782121&eav=AfaVzTaQsBC-rA7-e3e_M1b9dlfHJ9OcN2XkD6A7hXqoLgPuWIWFWrAuHYoBzu4OdhI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sergio Mentasti,,2019-05-18,,,/profile.php?id=100009417086062&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=600&av=100013534782121&eav=AfaVzTaQsBC-rA7-e3e_M1b9dlfHJ9OcN2XkD6A7hXqoLgPuWIWFWrAuHYoBzu4OdhI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Eleonora Cardia,,2019-05-18,,Sono contentissimaaaa per tè... Complimenti💗😘,/MariaEleonora61?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=600&av=100013534782121&eav=AfaVzTaQsBC-rA7-e3e_M1b9dlfHJ9OcN2XkD6A7hXqoLgPuWIWFWrAuHYoBzu4OdhI&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Francone,,2019-05-18,,,/emanuela.francone.319?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1420&av=100013534782121&eav=AfY4co89a0LVTP-5FuFYAn7kIHbf0aEcPWPf91UwDpIdzmMIvFmFN4Wt2US_TLz8S7M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luisella Pensè Pensè,,2019-05-18,,,/luisellapense?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1420&av=100013534782121&eav=AfY4co89a0LVTP-5FuFYAn7kIHbf0aEcPWPf91UwDpIdzmMIvFmFN4Wt2US_TLz8S7M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Kàris Pellegrino,,2019-05-18,,,/karis.pellegrino?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1420&av=100013534782121&eav=AfY4co89a0LVTP-5FuFYAn7kIHbf0aEcPWPf91UwDpIdzmMIvFmFN4Wt2US_TLz8S7M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudio Sirtori,,2019-05-18,,,/profile.php?id=100011354227728&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1420&av=100013534782121&eav=AfY4co89a0LVTP-5FuFYAn7kIHbf0aEcPWPf91UwDpIdzmMIvFmFN4Wt2US_TLz8S7M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Ferracane,,2019-05-18,,salvini fr president of italy,/marco.ferracane.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1420&av=100013534782121&eav=AfY4co89a0LVTP-5FuFYAn7kIHbf0aEcPWPf91UwDpIdzmMIvFmFN4Wt2US_TLz8S7M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +MariaTeresa Fenu,,2019-05-18,,,/mariateresa.fenu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1420&av=100013534782121&eav=AfY4co89a0LVTP-5FuFYAn7kIHbf0aEcPWPf91UwDpIdzmMIvFmFN4Wt2US_TLz8S7M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvia Vireca,,2019-05-18,,,/silvia.vireca?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1420&av=100013534782121&eav=AfY4co89a0LVTP-5FuFYAn7kIHbf0aEcPWPf91UwDpIdzmMIvFmFN4Wt2US_TLz8S7M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Idri,,2019-05-18,,,/stefania.idri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1420&av=100013534782121&eav=AfY4co89a0LVTP-5FuFYAn7kIHbf0aEcPWPf91UwDpIdzmMIvFmFN4Wt2US_TLz8S7M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giusi Scalzi,,2019-05-18,,,/giusi.scalzi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1420&av=100013534782121&eav=AfY4co89a0LVTP-5FuFYAn7kIHbf0aEcPWPf91UwDpIdzmMIvFmFN4Wt2US_TLz8S7M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Clarissa Castrello,,2019-05-18,,,/clarissa.castrello?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1420&av=100013534782121&eav=AfY4co89a0LVTP-5FuFYAn7kIHbf0aEcPWPf91UwDpIdzmMIvFmFN4Wt2US_TLz8S7M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giusi Scalzi,,2019-05-18,,,/giusi.scalzi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1430&av=100013534782121&eav=AfYDafVxy9tFzYSc_5PnTgtkFA_IEhqk2YNBSKTvxw7fJb9TFFinNoaPCApQ4o6NKX4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Idri,,2019-05-18,,,/stefania.idri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1430&av=100013534782121&eav=AfYDafVxy9tFzYSc_5PnTgtkFA_IEhqk2YNBSKTvxw7fJb9TFFinNoaPCApQ4o6NKX4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Idri,,2019-05-18,,,/stefania.idri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1430&av=100013534782121&eav=AfYDafVxy9tFzYSc_5PnTgtkFA_IEhqk2YNBSKTvxw7fJb9TFFinNoaPCApQ4o6NKX4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Idri,,2019-05-18,,,/stefania.idri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1430&av=100013534782121&eav=AfYDafVxy9tFzYSc_5PnTgtkFA_IEhqk2YNBSKTvxw7fJb9TFFinNoaPCApQ4o6NKX4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Clarissa Castrello,,2019-05-18,,,/clarissa.castrello?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1430&av=100013534782121&eav=AfYDafVxy9tFzYSc_5PnTgtkFA_IEhqk2YNBSKTvxw7fJb9TFFinNoaPCApQ4o6NKX4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefano Acquaviva,,2019-05-18,,,/stefanoacquaviva?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1430&av=100013534782121&eav=AfYDafVxy9tFzYSc_5PnTgtkFA_IEhqk2YNBSKTvxw7fJb9TFFinNoaPCApQ4o6NKX4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Clarissa Castrello,,2019-05-18,,,/clarissa.castrello?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1430&av=100013534782121&eav=AfYDafVxy9tFzYSc_5PnTgtkFA_IEhqk2YNBSKTvxw7fJb9TFFinNoaPCApQ4o6NKX4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Cislaghi,,2019-05-18,,,/antonella.cislaghi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1430&av=100013534782121&eav=AfYDafVxy9tFzYSc_5PnTgtkFA_IEhqk2YNBSKTvxw7fJb9TFFinNoaPCApQ4o6NKX4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vanda Vicari,,2019-05-18,,Stasera su la7 ci sarà di nuovo la Boldrini che dirà le sue stronzate,/vanda.vicari.52?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1430&av=100013534782121&eav=AfYDafVxy9tFzYSc_5PnTgtkFA_IEhqk2YNBSKTvxw7fJb9TFFinNoaPCApQ4o6NKX4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +RosAngela Chiarulli,,2019-05-18,,,/brillo.diluna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1430&av=100013534782121&eav=AfYDafVxy9tFzYSc_5PnTgtkFA_IEhqk2YNBSKTvxw7fJb9TFFinNoaPCApQ4o6NKX4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sabrina Bettella,ROOT,2019-05-18,,"Rosiconiiiii dove siete?? Spariti tutti oggi oh, fino a ieri sera erano tutti qua!",/profile.php?id=100011882164733&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537093155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDU3zrnEJd2PpQN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marzia Marchesin,Sabrina Bettella,2019-05-18,1,Sabrina Bettella sono a leggere i buggiardini 😂😂,/marzia.marchesin.1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_10156622537093155&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDU3zrnEJd2PpQN&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Anna D'Urso,,2019-05-18,,MATTEO THE BEST! !!! ✌✌✌✌💪💪💪💪💪💙💚💙💚💙💚💙,/anna.durso.9659?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=610&av=100013534782121&eav=AfaHhSCrYq_z86kJZP4AYbpue3K5FwL5N2DjdJMOIHtMPfPS5TPqfzUtJErlzv3tGx4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giulio Guatteri,,2019-05-18,2,,/giulio.guatteri.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=610&av=100013534782121&eav=AfaHhSCrYq_z86kJZP4AYbpue3K5FwL5N2DjdJMOIHtMPfPS5TPqfzUtJErlzv3tGx4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelo Federici,,2019-05-18,,Matteo...neanche per il Papa tutto questo 💚💚💚,/profile.php?id=100014196968138&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=610&av=100013534782121&eav=AfaHhSCrYq_z86kJZP4AYbpue3K5FwL5N2DjdJMOIHtMPfPS5TPqfzUtJErlzv3tGx4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ismaele Palermo,,2019-05-18,,,/ismaelethebest?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=610&av=100013534782121&eav=AfaHhSCrYq_z86kJZP4AYbpue3K5FwL5N2DjdJMOIHtMPfPS5TPqfzUtJErlzv3tGx4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Caragliu,,2019-05-18,,,/laura.caragliu?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=610&av=100013534782121&eav=AfaHhSCrYq_z86kJZP4AYbpue3K5FwL5N2DjdJMOIHtMPfPS5TPqfzUtJErlzv3tGx4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Josiane Carnevale,,2019-05-18,1,Bravoooooooo Bravissimo Matteo,/josiane.carnevale.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=610&av=100013534782121&eav=AfaHhSCrYq_z86kJZP4AYbpue3K5FwL5N2DjdJMOIHtMPfPS5TPqfzUtJErlzv3tGx4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,1,Oddioooooo mio oooooo grandi iiiiiii,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=610&av=100013534782121&eav=AfaHhSCrYq_z86kJZP4AYbpue3K5FwL5N2DjdJMOIHtMPfPS5TPqfzUtJErlzv3tGx4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Catia Milani,,2019-05-18,,😂😂😂solo 4 gatti?Magica lega magico Salvini vinceremo💚🇮🇹,/catia.milani.75?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=610&av=100013534782121&eav=AfaHhSCrYq_z86kJZP4AYbpue3K5FwL5N2DjdJMOIHtMPfPS5TPqfzUtJErlzv3tGx4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emily Ronny,,2019-05-18,,IN EUROPA BATTE UN CUORE💚 FORZA MINISTRO!!💚👏🇮🇹,/emily.ronny.52?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=610&av=100013534782121&eav=AfaHhSCrYq_z86kJZP4AYbpue3K5FwL5N2DjdJMOIHtMPfPS5TPqfzUtJErlzv3tGx4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luca Pinchera,ROOT,2019-05-18,1,Ministro il popolo italiano e con te in bocca al lupo buon lavoro ministro,/luca.pinchera.7?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_1119021195154276&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD9VsXG_4jZKJtT&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giangiacomo Carretta,Luca Pinchera,2019-05-18,,parla per te,/profile.php?id=100014160607111&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_1119021195154276&count=1&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQD9VsXG_4jZKJtT&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +RosAngela Chiarulli,,2019-05-18,,,/brillo.diluna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1440&av=100013534782121&eav=AfZ6k0YBUMwCBBuAmzI_MbPbsMZ_tT44288ZhpHmCdWOLHdFapXJGXXLFgm3U0e-TQ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Divavaleria Magri,,2019-05-18,,,/divavaleria.magri.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1440&av=100013534782121&eav=AfZ6k0YBUMwCBBuAmzI_MbPbsMZ_tT44288ZhpHmCdWOLHdFapXJGXXLFgm3U0e-TQ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +RosAngela Chiarulli,,2019-05-18,,,/brillo.diluna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1440&av=100013534782121&eav=AfZ6k0YBUMwCBBuAmzI_MbPbsMZ_tT44288ZhpHmCdWOLHdFapXJGXXLFgm3U0e-TQ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Bossi,,2019-05-18,,,/elena.bossi.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1440&av=100013534782121&eav=AfZ6k0YBUMwCBBuAmzI_MbPbsMZ_tT44288ZhpHmCdWOLHdFapXJGXXLFgm3U0e-TQ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelo Raspante,,2019-05-18,,,/angelo.raspante49?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1440&av=100013534782121&eav=AfZ6k0YBUMwCBBuAmzI_MbPbsMZ_tT44288ZhpHmCdWOLHdFapXJGXXLFgm3U0e-TQ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nicoletta Sanfilippo,,2019-05-18,,Stai più tempo a farti i selfie che altro... Grande Matté... Pace interiore...,/nicoletta.sanfilippo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1440&av=100013534782121&eav=AfZ6k0YBUMwCBBuAmzI_MbPbsMZ_tT44288ZhpHmCdWOLHdFapXJGXXLFgm3U0e-TQ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Di Stefano,,2019-05-18,,"Capitano,siamo noi Italiani che ringraziamo te!!!!",/patriziads?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1440&av=100013534782121&eav=AfZ6k0YBUMwCBBuAmzI_MbPbsMZ_tT44288ZhpHmCdWOLHdFapXJGXXLFgm3U0e-TQ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pasquale Domenico Sanguedolce,,2019-05-18,1,Oggi si è scritto un nuovo capitolo della storia d’Italia e dell’Europa 💚🇮🇹❤️,/pasqualedomenico.sanguedolce.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1440&av=100013534782121&eav=AfZ6k0YBUMwCBBuAmzI_MbPbsMZ_tT44288ZhpHmCdWOLHdFapXJGXXLFgm3U0e-TQ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudia Venturi,,2019-05-18,,,/claudia.venturi.545?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1440&av=100013534782121&eav=AfZ6k0YBUMwCBBuAmzI_MbPbsMZ_tT44288ZhpHmCdWOLHdFapXJGXXLFgm3U0e-TQ8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Piccione Pizzo,ROOT,2019-05-18,1,,/impresa.edilpiccione?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265826257003837&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCKm4P2DtHSBwTR&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Paola Balducci,Giuseppe Piccione Pizzo,2019-05-18,1,Giuseppe Piccione Pizzo se ti piace un'Italia impoverita dai finanzieri europei e invasa dai musulmani che ci ammazzano tutti i giorni nel mondo non votare Salvini,/paola.balducci.75?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265826257003837&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCKm4P2DtHSBwTR&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Emily Ronny,Giuseppe Piccione Pizzo,2019-05-18,,Giuseppe Piccione Pizzo Stai a rosicá !??? PORACCIO....ma il mondo é grande....te ne puoi andare fuori dalla NOSTRA ITALIA💚🇮🇹,/emily.ronny.52?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265826257003837&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCKm4P2DtHSBwTR&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianluca Furlan,Giuseppe Piccione Pizzo,2019-05-18,,Vai a spaccar muri va anziché i maroni,/profile.php?id=100011279413623&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265826257003837&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCKm4P2DtHSBwTR&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Giuseppe Piccione Pizzo,Giuseppe Piccione Pizzo,2019-05-18,,Ei gente svegliatevi che salvini e come Renzi se volete perdere atri cinque anni fate pure.,/impresa.edilpiccione?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265826257003837&count=4&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQCKm4P2DtHSBwTR&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Doroty Grace,,2019-05-18,,,/doroty.grace.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1450&av=100013534782121&eav=AfZ4v3Os-__B0dZG0SU3VDN1qgoqyxRNx2o-8nngDkkTcaWvwwZi6IVhdh5s2zvBFv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaele Cipolletta,,2019-05-18,,,/raffaele.cipo.patty?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1450&av=100013534782121&eav=AfZ4v3Os-__B0dZG0SU3VDN1qgoqyxRNx2o-8nngDkkTcaWvwwZi6IVhdh5s2zvBFv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaele Cipolletta,,2019-05-18,,,/raffaele.cipo.patty?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1450&av=100013534782121&eav=AfZ4v3Os-__B0dZG0SU3VDN1qgoqyxRNx2o-8nngDkkTcaWvwwZi6IVhdh5s2zvBFv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaele Cipolletta,,2019-05-18,,,/raffaele.cipo.patty?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1450&av=100013534782121&eav=AfZ4v3Os-__B0dZG0SU3VDN1qgoqyxRNx2o-8nngDkkTcaWvwwZi6IVhdh5s2zvBFv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaele Cipolletta,,2019-05-18,,,/raffaele.cipo.patty?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1450&av=100013534782121&eav=AfZ4v3Os-__B0dZG0SU3VDN1qgoqyxRNx2o-8nngDkkTcaWvwwZi6IVhdh5s2zvBFv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudia Selleri,,2019-05-18,,,/claudia.selleri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1450&av=100013534782121&eav=AfZ4v3Os-__B0dZG0SU3VDN1qgoqyxRNx2o-8nngDkkTcaWvwwZi6IVhdh5s2zvBFv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Bossi,,2019-05-18,,,/elena.bossi.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1450&av=100013534782121&eav=AfZ4v3Os-__B0dZG0SU3VDN1qgoqyxRNx2o-8nngDkkTcaWvwwZi6IVhdh5s2zvBFv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Bossi,,2019-05-18,,,/elena.bossi.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1450&av=100013534782121&eav=AfZ4v3Os-__B0dZG0SU3VDN1qgoqyxRNx2o-8nngDkkTcaWvwwZi6IVhdh5s2zvBFv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Iva Bruno,,2019-05-18,,,/iva.bruno.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1450&av=100013534782121&eav=AfZ4v3Os-__B0dZG0SU3VDN1qgoqyxRNx2o-8nngDkkTcaWvwwZi6IVhdh5s2zvBFv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Bossi,,2019-05-18,,,/elena.bossi.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1450&av=100013534782121&eav=AfZ4v3Os-__B0dZG0SU3VDN1qgoqyxRNx2o-8nngDkkTcaWvwwZi6IVhdh5s2zvBFv8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anto Nietta,,2019-05-18,,Bravo la gente ti vuole per la tua educazione . Salvini sei grande .auguri .,/antonietta.catalano.18?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=620&av=100013534782121&eav=AfZFIzlsPLW8zFzmMXESbnx31oIHvbB_J9Mp2CFLW1iHapBqkWAP6BFATX4MRwompjs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Quadarella,,2019-05-18,,,/dani.quadarella?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=620&av=100013534782121&eav=AfZFIzlsPLW8zFzmMXESbnx31oIHvbB_J9Mp2CFLW1iHapBqkWAP6BFATX4MRwompjs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Karima Anna Alba Ederle,,2019-05-18,2,,/annamaria.sauli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=620&av=100013534782121&eav=AfZFIzlsPLW8zFzmMXESbnx31oIHvbB_J9Mp2CFLW1iHapBqkWAP6BFATX4MRwompjs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna de Luca,,2019-05-18,,Salvini sei grande se il n.1 tutti noi siamo con te,/profile.php?id=100014833396371&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=620&av=100013534782121&eav=AfZFIzlsPLW8zFzmMXESbnx31oIHvbB_J9Mp2CFLW1iHapBqkWAP6BFATX4MRwompjs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cesarina Molinari,,2019-05-18,,Così si fa' grande il nostro ministro 👍👍👍👍👍💚💚💚💚💚💚💚,/cesarina.molinari?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=620&av=100013534782121&eav=AfZFIzlsPLW8zFzmMXESbnx31oIHvbB_J9Mp2CFLW1iHapBqkWAP6BFATX4MRwompjs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Brunella Cavallini,,2019-05-18,2,Che meraviglia!!!! Io ero lì con il cuore ❤️❤️❤️❤️🙏🙏🙏😘😘😘👍👍👍👍👍,/brunella.cavallini.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=620&av=100013534782121&eav=AfZFIzlsPLW8zFzmMXESbnx31oIHvbB_J9Mp2CFLW1iHapBqkWAP6BFATX4MRwompjs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Isabella De Paola,,2019-05-18,1,"Non volevo votare per nessuno ma per te ,sara un si !!",/isabella.depaola.988?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=620&av=100013534782121&eav=AfZFIzlsPLW8zFzmMXESbnx31oIHvbB_J9Mp2CFLW1iHapBqkWAP6BFATX4MRwompjs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marina Boldrini,,2019-05-18,,Vai Matteo avanti tutta💚,/marina.boldrini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=620&av=100013534782121&eav=AfZFIzlsPLW8zFzmMXESbnx31oIHvbB_J9Mp2CFLW1iHapBqkWAP6BFATX4MRwompjs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelo Azzurro,,2019-05-18,4,Evviva salviniiiiii,/angelo.azzurro.1232?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=620&av=100013534782121&eav=AfZFIzlsPLW8zFzmMXESbnx31oIHvbB_J9Mp2CFLW1iHapBqkWAP6BFATX4MRwompjs&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Bossi,,2019-05-18,,,/elena.bossi.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1460&av=100013534782121&eav=AfYYig3acRQj4CWj0IvQIFaSb6BSMekRb3X75kOCIh7ev2SSie8z-bfxzirrQwcHRLQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Bossi,,2019-05-18,,,/elena.bossi.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1460&av=100013534782121&eav=AfYYig3acRQj4CWj0IvQIFaSb6BSMekRb3X75kOCIh7ev2SSie8z-bfxzirrQwcHRLQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Iva Bruno,,2019-05-18,,,/iva.bruno.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1460&av=100013534782121&eav=AfYYig3acRQj4CWj0IvQIFaSb6BSMekRb3X75kOCIh7ev2SSie8z-bfxzirrQwcHRLQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Iva Bruno,,2019-05-18,,,/iva.bruno.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1460&av=100013534782121&eav=AfYYig3acRQj4CWj0IvQIFaSb6BSMekRb3X75kOCIh7ev2SSie8z-bfxzirrQwcHRLQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Iva Bruno,,2019-05-18,,,/iva.bruno.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1460&av=100013534782121&eav=AfYYig3acRQj4CWj0IvQIFaSb6BSMekRb3X75kOCIh7ev2SSie8z-bfxzirrQwcHRLQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +RosAngela Chiarulli,,2019-05-18,1,,/brillo.diluna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1460&av=100013534782121&eav=AfYYig3acRQj4CWj0IvQIFaSb6BSMekRb3X75kOCIh7ev2SSie8z-bfxzirrQwcHRLQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Iva Bruno,,2019-05-18,,,/iva.bruno.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1460&av=100013534782121&eav=AfYYig3acRQj4CWj0IvQIFaSb6BSMekRb3X75kOCIh7ev2SSie8z-bfxzirrQwcHRLQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Iva Bruno,,2019-05-18,,,/iva.bruno.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1460&av=100013534782121&eav=AfYYig3acRQj4CWj0IvQIFaSb6BSMekRb3X75kOCIh7ev2SSie8z-bfxzirrQwcHRLQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Iva Bruno,,2019-05-18,,,/iva.bruno.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1460&av=100013534782121&eav=AfYYig3acRQj4CWj0IvQIFaSb6BSMekRb3X75kOCIh7ev2SSie8z-bfxzirrQwcHRLQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Iva Bruno,,2019-05-18,,,/iva.bruno.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1460&av=100013534782121&eav=AfYYig3acRQj4CWj0IvQIFaSb6BSMekRb3X75kOCIh7ev2SSie8z-bfxzirrQwcHRLQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +RosAngela Chiarulli,,2019-05-18,,,/brillo.diluna?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1470&av=100013534782121&eav=AfahRjohTjK2o3TcyZtl6EbLMkS84BFfgCLXLuVIX_MXBYFoNzJpUvtLdJpxU_uJVR0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Iva Bruno,,2019-05-18,,,/iva.bruno.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1470&av=100013534782121&eav=AfahRjohTjK2o3TcyZtl6EbLMkS84BFfgCLXLuVIX_MXBYFoNzJpUvtLdJpxU_uJVR0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Iva Bruno,,2019-05-18,,,/iva.bruno.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1470&av=100013534782121&eav=AfahRjohTjK2o3TcyZtl6EbLMkS84BFfgCLXLuVIX_MXBYFoNzJpUvtLdJpxU_uJVR0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvia Bertinatti,,2019-05-18,,,/profile.php?id=100008680242741&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1470&av=100013534782121&eav=AfahRjohTjK2o3TcyZtl6EbLMkS84BFfgCLXLuVIX_MXBYFoNzJpUvtLdJpxU_uJVR0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Carletto,,2019-05-18,,,/antonella.carletto.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1470&av=100013534782121&eav=AfahRjohTjK2o3TcyZtl6EbLMkS84BFfgCLXLuVIX_MXBYFoNzJpUvtLdJpxU_uJVR0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandra Tielinen,,2019-05-18,,,/profile.php?id=100002111257777&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1470&av=100013534782121&eav=AfahRjohTjK2o3TcyZtl6EbLMkS84BFfgCLXLuVIX_MXBYFoNzJpUvtLdJpxU_uJVR0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Natalia Lambri,,2019-05-18,,,/natalia.lambri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1470&av=100013534782121&eav=AfahRjohTjK2o3TcyZtl6EbLMkS84BFfgCLXLuVIX_MXBYFoNzJpUvtLdJpxU_uJVR0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fernando Borghesi,,2019-05-18,,,/fernando.borghesi.50?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1470&av=100013534782121&eav=AfahRjohTjK2o3TcyZtl6EbLMkS84BFfgCLXLuVIX_MXBYFoNzJpUvtLdJpxU_uJVR0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Pugliese,,2019-05-18,,,/rosanna.pugliese.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1470&av=100013534782121&eav=AfahRjohTjK2o3TcyZtl6EbLMkS84BFfgCLXLuVIX_MXBYFoNzJpUvtLdJpxU_uJVR0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marianna Antonio Leone,,2019-05-18,,,/antonioemarianna.leone?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1470&av=100013534782121&eav=AfahRjohTjK2o3TcyZtl6EbLMkS84BFfgCLXLuVIX_MXBYFoNzJpUvtLdJpxU_uJVR0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianni Spelta,ROOT,2019-05-18,,Si sa quanti piú o meno?,/gianni.spelta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301914070697739&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDCLMrJP7P3W1-j&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Brigida Virgili,Gianni Spelta,2019-05-18,1,Gianni Spelta non lo so ma ti posso dire che era una vera marea. Anche le vie trasversali era stracolme. Da brividi.,/profile.php?id=100009742724883&rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301914070697739&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDCLMrJP7P3W1-j&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gianni Spelta,Gianni Spelta,2019-05-18,,Volevo andare ma non ho proprio potuto,/gianni.spelta?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301914070697739&count=3&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQDCLMrJP7P3W1-j&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Marco Guarisco,,2019-05-18,,,/Il.Corvo76?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1480&av=100013534782121&eav=AfbSxF5Kq0XBEwodY0h0hICmSbFSVuluPk0EqDbNoPIzymkpSNFboB2Y5GHJsHiGWGU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emanuela Rizzo,,2019-05-18,,,/profile.php?id=100008121526553&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1480&av=100013534782121&eav=AfbSxF5Kq0XBEwodY0h0hICmSbFSVuluPk0EqDbNoPIzymkpSNFboB2Y5GHJsHiGWGU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Rossi,,2019-05-18,,,/profile.php?id=100000861813903&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1480&av=100013534782121&eav=AfbSxF5Kq0XBEwodY0h0hICmSbFSVuluPk0EqDbNoPIzymkpSNFboB2Y5GHJsHiGWGU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lella Gaeta,,2019-05-18,,,/lella.gaeta.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1480&av=100013534782121&eav=AfbSxF5Kq0XBEwodY0h0hICmSbFSVuluPk0EqDbNoPIzymkpSNFboB2Y5GHJsHiGWGU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Arenari,,2019-05-18,,,/patrizia.arenari?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1480&av=100013534782121&eav=AfbSxF5Kq0XBEwodY0h0hICmSbFSVuluPk0EqDbNoPIzymkpSNFboB2Y5GHJsHiGWGU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianna Ceccato,,2019-05-18,,,/gianna.ceccato.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1480&av=100013534782121&eav=AfbSxF5Kq0XBEwodY0h0hICmSbFSVuluPk0EqDbNoPIzymkpSNFboB2Y5GHJsHiGWGU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Margherita Capra,,2019-05-18,,,/profile.php?id=100010315125276&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1480&av=100013534782121&eav=AfbSxF5Kq0XBEwodY0h0hICmSbFSVuluPk0EqDbNoPIzymkpSNFboB2Y5GHJsHiGWGU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Meriot Morda,,2019-05-18,,,/meriot.morda?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1480&av=100013534782121&eav=AfbSxF5Kq0XBEwodY0h0hICmSbFSVuluPk0EqDbNoPIzymkpSNFboB2Y5GHJsHiGWGU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Iannelli,,2019-05-18,,,/profile.php?id=100006316600696&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1480&av=100013534782121&eav=AfbSxF5Kq0XBEwodY0h0hICmSbFSVuluPk0EqDbNoPIzymkpSNFboB2Y5GHJsHiGWGU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Barbara Barberi,,2019-05-18,2,Il 26 li facciamo neri ai rossi💚💚💚🇮🇹🇮🇹🇮🇹,/barbara.barberi.52?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1480&av=100013534782121&eav=AfbSxF5Kq0XBEwodY0h0hICmSbFSVuluPk0EqDbNoPIzymkpSNFboB2Y5GHJsHiGWGU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Iorio,,2019-05-18,,Non far cadere il governo quota 100 è la salvezza per tante persone.,/profile.php?id=100011921445344&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1490&av=100013534782121&eav=AfafR0RFfEvO04BGu3THyE4YDUTakzqyyd1iaFLLYUaTTcUy1DdJO38Kpoq_5DyA98g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvia Marino,,2019-05-18,,"Bellissimo in mezzo alla gente.,.. Grande",/silvia.marino.106?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1490&av=100013534782121&eav=AfafR0RFfEvO04BGu3THyE4YDUTakzqyyd1iaFLLYUaTTcUy1DdJO38Kpoq_5DyA98g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Salvatore Maria Scuderi,,2019-05-18,,Non mollare il popolo onesto e tutto con te SEI UN GRANDE,/profile.php?id=100010279540320&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1490&av=100013534782121&eav=AfafR0RFfEvO04BGu3THyE4YDUTakzqyyd1iaFLLYUaTTcUy1DdJO38Kpoq_5DyA98g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liudmila Cotun,,2019-05-18,2,Grazie a Te Ministro!👍🏻 Spacca tutto,/cotun.liudmila?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1490&av=100013534782121&eav=AfafR0RFfEvO04BGu3THyE4YDUTakzqyyd1iaFLLYUaTTcUy1DdJO38Kpoq_5DyA98g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Liza Baranovics,,2019-05-18,,,/profile.php?id=100007210278918&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1490&av=100013534782121&eav=AfafR0RFfEvO04BGu3THyE4YDUTakzqyyd1iaFLLYUaTTcUy1DdJO38Kpoq_5DyA98g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tiziana Campidoglio,,2019-05-18,,,/tiziana.campidoglio.18?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1490&av=100013534782121&eav=AfafR0RFfEvO04BGu3THyE4YDUTakzqyyd1iaFLLYUaTTcUy1DdJO38Kpoq_5DyA98g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Ricci,,2019-05-18,,,/giuseppe.ricci.1614?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1490&av=100013534782121&eav=AfafR0RFfEvO04BGu3THyE4YDUTakzqyyd1iaFLLYUaTTcUy1DdJO38Kpoq_5DyA98g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franca Tufo,,2019-05-18,,,/franca.tufo?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1490&av=100013534782121&eav=AfafR0RFfEvO04BGu3THyE4YDUTakzqyyd1iaFLLYUaTTcUy1DdJO38Kpoq_5DyA98g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Boccanera,,2019-05-18,,,/patrizia.boccanera.50?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1490&av=100013534782121&eav=AfafR0RFfEvO04BGu3THyE4YDUTakzqyyd1iaFLLYUaTTcUy1DdJO38Kpoq_5DyA98g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Jarmo Kyyrö,,2019-05-18,,,/jarmo.eduskuntaan?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1490&av=100013534782121&eav=AfafR0RFfEvO04BGu3THyE4YDUTakzqyyd1iaFLLYUaTTcUy1DdJO38Kpoq_5DyA98g&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanna Perini,ROOT,2019-05-18,,Ma per la sinistra tutti ignoranti!!,/giovanna.perini1?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265840960335700&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD6xJQVNHOIvfHD&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,Giovanna Perini,2019-05-18,,Giovanna Perini 😃,/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265840960335700&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD6xJQVNHOIvfHD&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Lina Magnaguadagno,,2019-05-18,,,/lina.magnaguadagno?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1500&av=100013534782121&eav=AfZyQy_WGJBxdipC1XekQiXnbwWdTCFeZQGsrE-TtccNPQH7J9JDyJLwWtqqu5FIdeY&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lina Magnaguadagno,,2019-05-18,,,/lina.magnaguadagno?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1500&av=100013534782121&eav=AfZyQy_WGJBxdipC1XekQiXnbwWdTCFeZQGsrE-TtccNPQH7J9JDyJLwWtqqu5FIdeY&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giusy Giuseppina,,2019-05-18,,,/giusy.giuseppina.965?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1500&av=100013534782121&eav=AfZyQy_WGJBxdipC1XekQiXnbwWdTCFeZQGsrE-TtccNPQH7J9JDyJLwWtqqu5FIdeY&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gloria Tessaro,,2019-05-18,,,/profile.php?id=100009442826823&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1500&av=100013534782121&eav=AfZyQy_WGJBxdipC1XekQiXnbwWdTCFeZQGsrE-TtccNPQH7J9JDyJLwWtqqu5FIdeY&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Zyla,,2019-05-18,,,/maria.zyla.56?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1500&av=100013534782121&eav=AfZyQy_WGJBxdipC1XekQiXnbwWdTCFeZQGsrE-TtccNPQH7J9JDyJLwWtqqu5FIdeY&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabio Bortolini,,2019-05-18,,,/fabio.bortolini2?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1500&av=100013534782121&eav=AfZyQy_WGJBxdipC1XekQiXnbwWdTCFeZQGsrE-TtccNPQH7J9JDyJLwWtqqu5FIdeY&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ivan Biasi,,2019-05-18,,,/profile.php?id=100012550277418&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1500&av=100013534782121&eav=AfZyQy_WGJBxdipC1XekQiXnbwWdTCFeZQGsrE-TtccNPQH7J9JDyJLwWtqqu5FIdeY&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Cancellieri,,2019-05-18,,E ora ci sarà il solito balletto della nave davanti alle coste,/silvana.cancellieri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1500&av=100013534782121&eav=AfZyQy_WGJBxdipC1XekQiXnbwWdTCFeZQGsrE-TtccNPQH7J9JDyJLwWtqqu5FIdeY&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuliano Mancini,,2019-05-18,,Contratto forze dell'ordine....lo rimandiamo ?,/giuliano.mancini.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1500&av=100013534782121&eav=AfZyQy_WGJBxdipC1XekQiXnbwWdTCFeZQGsrE-TtccNPQH7J9JDyJLwWtqqu5FIdeY&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Enza Di Tucci,,2019-05-18,,,/profile.php?id=100004340449066&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1500&av=100013534782121&eav=AfZyQy_WGJBxdipC1XekQiXnbwWdTCFeZQGsrE-TtccNPQH7J9JDyJLwWtqqu5FIdeY&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angelo Azzurro,,2019-05-18,4,Evviva salviniiiiii,/angelo.azzurro.1232?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=630&av=100013534782121&eav=AfbbHwf9XsGHMJyi4hjIvkchoZ7iM1ZulX2H61MgBqaSJstVqcAQKqLEDNGxdBzt_g4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Balducci,,2019-05-18,,,/paola.balducci.75?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=630&av=100013534782121&eav=AfbbHwf9XsGHMJyi4hjIvkchoZ7iM1ZulX2H61MgBqaSJstVqcAQKqLEDNGxdBzt_g4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniele Capucciati,,2019-05-18,,Ma sono pochINI va dicendo la BoldrINI!!,/profile.php?id=100008857651184&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=630&av=100013534782121&eav=AfbbHwf9XsGHMJyi4hjIvkchoZ7iM1ZulX2H61MgBqaSJstVqcAQKqLEDNGxdBzt_g4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandro Di Vincenzo,,2019-05-18,1,Troppi Fascisti in piazza ... non va per niente bene ... aiutoooooooooooo !!! 😱😱😱😱😱😱😱,/alessandro.divincenzo.56884?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=630&av=100013534782121&eav=AfbbHwf9XsGHMJyi4hjIvkchoZ7iM1ZulX2H61MgBqaSJstVqcAQKqLEDNGxdBzt_g4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Sole,,2019-05-18,,Felicissima di tutto questo.. Il mio voto è quello di mio marito sarà per Salvini..,/profile.php?id=100012137229680&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=630&av=100013534782121&eav=AfbbHwf9XsGHMJyi4hjIvkchoZ7iM1ZulX2H61MgBqaSJstVqcAQKqLEDNGxdBzt_g4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Minelli,,2019-05-18,,Fantastici italiani per cambiare l'Europa!,/marco.minelli.169?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=630&av=100013534782121&eav=AfbbHwf9XsGHMJyi4hjIvkchoZ7iM1ZulX2H61MgBqaSJstVqcAQKqLEDNGxdBzt_g4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Emilio De Slucca,,2019-05-18,,Futuro presidente della REPUBBLICA,/emilio.deslucca.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=630&av=100013534782121&eav=AfbbHwf9XsGHMJyi4hjIvkchoZ7iM1ZulX2H61MgBqaSJstVqcAQKqLEDNGxdBzt_g4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorenzo Rossi,,2019-05-18,1,,/lorenzo.rossi.90226628?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=630&av=100013534782121&eav=AfbbHwf9XsGHMJyi4hjIvkchoZ7iM1ZulX2H61MgBqaSJstVqcAQKqLEDNGxdBzt_g4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandro Donarini,,2019-05-18,,,/alessandro.donarini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1510&av=100013534782121&eav=Afbc1rOZHT_-4ZVewbFBpB5cfCtmhk7ErBrFVC-u7x4r9-tUm_ejfN7eNLpjN8bjmCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +S M Jahid Hasan,,2019-05-18,,,/smjahid.hasan.108?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1510&av=100013534782121&eav=Afbc1rOZHT_-4ZVewbFBpB5cfCtmhk7ErBrFVC-u7x4r9-tUm_ejfN7eNLpjN8bjmCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carmelo Casella,,2019-05-18,,,/carmelo.casella.79?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1510&av=100013534782121&eav=Afbc1rOZHT_-4ZVewbFBpB5cfCtmhk7ErBrFVC-u7x4r9-tUm_ejfN7eNLpjN8bjmCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marika Oscar,,2019-05-18,,,/profile.php?id=100012977430176&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1510&av=100013534782121&eav=Afbc1rOZHT_-4ZVewbFBpB5cfCtmhk7ErBrFVC-u7x4r9-tUm_ejfN7eNLpjN8bjmCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Schlanser,,2019-05-18,,,/gabriella.schlanser?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1510&av=100013534782121&eav=Afbc1rOZHT_-4ZVewbFBpB5cfCtmhk7ErBrFVC-u7x4r9-tUm_ejfN7eNLpjN8bjmCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Schlanser,,2019-05-18,,,/gabriella.schlanser?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1510&av=100013534782121&eav=Afbc1rOZHT_-4ZVewbFBpB5cfCtmhk7ErBrFVC-u7x4r9-tUm_ejfN7eNLpjN8bjmCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Schlanser,,2019-05-18,,,/gabriella.schlanser?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1510&av=100013534782121&eav=Afbc1rOZHT_-4ZVewbFBpB5cfCtmhk7ErBrFVC-u7x4r9-tUm_ejfN7eNLpjN8bjmCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Schlanser,,2019-05-18,,,/gabriella.schlanser?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1510&av=100013534782121&eav=Afbc1rOZHT_-4ZVewbFBpB5cfCtmhk7ErBrFVC-u7x4r9-tUm_ejfN7eNLpjN8bjmCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Enza Di Tucci,,2019-05-18,,,/profile.php?id=100004340449066&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1510&av=100013534782121&eav=Afbc1rOZHT_-4ZVewbFBpB5cfCtmhk7ErBrFVC-u7x4r9-tUm_ejfN7eNLpjN8bjmCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luciana Mariotti,,2019-05-18,,,/luciana.mariotti.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1510&av=100013534782121&eav=Afbc1rOZHT_-4ZVewbFBpB5cfCtmhk7ErBrFVC-u7x4r9-tUm_ejfN7eNLpjN8bjmCA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lorenzo Rossi,,2019-05-18,,,/lorenzo.rossi.90226628?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=640&av=100013534782121&eav=AfZcDKBdwSy41Cn8iAivDE9KNMe81qH73qdGfS89EkzewMfcdxRsbbrWibTlIalHhf4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elsa Deghelli,,2019-05-18,,,/elsa.deghelli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=640&av=100013534782121&eav=AfZcDKBdwSy41Cn8iAivDE9KNMe81qH73qdGfS89EkzewMfcdxRsbbrWibTlIalHhf4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elsa Deghelli,,2019-05-18,1,,/elsa.deghelli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=640&av=100013534782121&eav=AfZcDKBdwSy41Cn8iAivDE9KNMe81qH73qdGfS89EkzewMfcdxRsbbrWibTlIalHhf4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Renato Lorini,,2019-05-18,,i sinistrati sinistronzi diranno che è un fotomontaggio 😂😂😂,/renato.lorini.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=640&av=100013534782121&eav=AfZcDKBdwSy41Cn8iAivDE9KNMe81qH73qdGfS89EkzewMfcdxRsbbrWibTlIalHhf4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franco Casini,,2019-05-18,,Certo se sono tutti fascisti sono veramente tanti,/franco.casini.98?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=640&av=100013534782121&eav=AfZcDKBdwSy41Cn8iAivDE9KNMe81qH73qdGfS89EkzewMfcdxRsbbrWibTlIalHhf4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Donatella Casiraghi,,2019-05-18,,"Grande, bella e pulita. 😍",/donatella.casiraghi.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=640&av=100013534782121&eav=AfZcDKBdwSy41Cn8iAivDE9KNMe81qH73qdGfS89EkzewMfcdxRsbbrWibTlIalHhf4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Enio Battistel,,2019-05-18,,Matteo tutti per te.,/eniosugar?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=640&av=100013534782121&eav=AfZcDKBdwSy41Cn8iAivDE9KNMe81qH73qdGfS89EkzewMfcdxRsbbrWibTlIalHhf4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Diego Neri,,2019-05-18,,SALVINI E MELONI UNICA SOLUZIONE !!!! DI MAIO TIRA SOLO FANGO BASTA !!!!!,/diego.neri.100?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=640&av=100013534782121&eav=AfZcDKBdwSy41Cn8iAivDE9KNMe81qH73qdGfS89EkzewMfcdxRsbbrWibTlIalHhf4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Salvo Mar,,2019-05-18,,Tutto semplicemente magnifico 😉👍,/tato.martire?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=640&av=100013534782121&eav=AfZcDKBdwSy41Cn8iAivDE9KNMe81qH73qdGfS89EkzewMfcdxRsbbrWibTlIalHhf4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Karin Sharon Martino,,2019-05-18,1,Rendetevi conto !!#Renzirosica da te uova marce a faccia 😂😂,/karin.martino?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=640&av=100013534782121&eav=AfZcDKBdwSy41Cn8iAivDE9KNMe81qH73qdGfS89EkzewMfcdxRsbbrWibTlIalHhf4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luciana Mariotti,,2019-05-18,,,/luciana.mariotti.33?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1520&av=100013534782121&eav=Afb3NITK2DewXcWy_tRrFlXNN4ypAt0WBI9MZWQZj6-C8BLxtlID6bYOXyCMzI3fF60&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mietasek Malinowski,,2019-05-18,,,/mietasek.malinowski?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1520&av=100013534782121&eav=Afb3NITK2DewXcWy_tRrFlXNN4ypAt0WBI9MZWQZj6-C8BLxtlID6bYOXyCMzI3fF60&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sebastiano Tallarita,,2019-05-18,,,/sebastiano.tallarita.12?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1520&av=100013534782121&eav=Afb3NITK2DewXcWy_tRrFlXNN4ypAt0WBI9MZWQZj6-C8BLxtlID6bYOXyCMzI3fF60&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Graziella Giacobbe,,2019-05-18,,,/graziella.giacobbe.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1520&av=100013534782121&eav=Afb3NITK2DewXcWy_tRrFlXNN4ypAt0WBI9MZWQZj6-C8BLxtlID6bYOXyCMzI3fF60&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Piergentili,,2019-05-18,,,/profile.php?id=100010187014839&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1520&av=100013534782121&eav=Afb3NITK2DewXcWy_tRrFlXNN4ypAt0WBI9MZWQZj6-C8BLxtlID6bYOXyCMzI3fF60&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rita Basile,,2019-05-18,,,/rita.basile.102?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1520&av=100013534782121&eav=Afb3NITK2DewXcWy_tRrFlXNN4ypAt0WBI9MZWQZj6-C8BLxtlID6bYOXyCMzI3fF60&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Enza Di Tucci,,2019-05-18,,,/profile.php?id=100004340449066&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1520&av=100013534782121&eav=Afb3NITK2DewXcWy_tRrFlXNN4ypAt0WBI9MZWQZj6-C8BLxtlID6bYOXyCMzI3fF60&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Edoardo Bordiga,,2019-05-18,,,/edoardo.bordiga.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1520&av=100013534782121&eav=Afb3NITK2DewXcWy_tRrFlXNN4ypAt0WBI9MZWQZj6-C8BLxtlID6bYOXyCMzI3fF60&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cinzia Bruno,,2019-05-18,,,/cinzia.bruno.35?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1520&av=100013534782121&eav=Afb3NITK2DewXcWy_tRrFlXNN4ypAt0WBI9MZWQZj6-C8BLxtlID6bYOXyCMzI3fF60&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Enza Di Tucci,,2019-05-18,,,/profile.php?id=100004340449066&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1520&av=100013534782121&eav=Afb3NITK2DewXcWy_tRrFlXNN4ypAt0WBI9MZWQZj6-C8BLxtlID6bYOXyCMzI3fF60&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franca Veronese,,2019-05-18,1,,/franca.veronese.12?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=650&av=100013534782121&eav=AfZWzHNHYhM5-ltzI0u4s8LYfbRjpx-LeKLeVGkc8ZHVRz7uKO092L7G1xLOe-yeWIE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Federica Eb,,2019-05-18,,Matteo Il Grande!!,/federicaeb?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=650&av=100013534782121&eav=AfZWzHNHYhM5-ltzI0u4s8LYfbRjpx-LeKLeVGkc8ZHVRz7uKO092L7G1xLOe-yeWIE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bruna Martinetto,,2019-05-18,,,/profile.php?id=100010245429974&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=650&av=100013534782121&eav=AfZWzHNHYhM5-ltzI0u4s8LYfbRjpx-LeKLeVGkc8ZHVRz7uKO092L7G1xLOe-yeWIE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mirk Moroncini,,2019-05-18,,Queste sono le piazze che piace me,/mirk.moroncini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=650&av=100013534782121&eav=AfZWzHNHYhM5-ltzI0u4s8LYfbRjpx-LeKLeVGkc8ZHVRz7uKO092L7G1xLOe-yeWIE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vin Can,,2019-05-18,,Kevin Milano ta..pozzu...riciri...na. ..cosa. Ma va....affanculo,/vin.can.1217?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=650&av=100013534782121&eav=AfZWzHNHYhM5-ltzI0u4s8LYfbRjpx-LeKLeVGkc8ZHVRz7uKO092L7G1xLOe-yeWIE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Natale Cardile,,2019-05-18,,e menomale che il tempo non'era buono Grande Salvini,/natale.cardile.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=650&av=100013534782121&eav=AfZWzHNHYhM5-ltzI0u4s8LYfbRjpx-LeKLeVGkc8ZHVRz7uKO092L7G1xLOe-yeWIE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luca Orlandi,,2019-05-18,1,Avanti Teo che tutti in manette finiscono,/ogianluca?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=650&av=100013534782121&eav=AfZWzHNHYhM5-ltzI0u4s8LYfbRjpx-LeKLeVGkc8ZHVRz7uKO092L7G1xLOe-yeWIE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nadia Lavina,,2019-05-18,,"Te la meriti questa, Piazza 👏👏👏👏❤️❤️❤️",/profile.php?id=100005319612513&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=650&av=100013534782121&eav=AfZWzHNHYhM5-ltzI0u4s8LYfbRjpx-LeKLeVGkc8ZHVRz7uKO092L7G1xLOe-yeWIE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Renata Dalla Vedova,,2019-05-18,,Avanti tutta grande Matteo👏👏👏☺,/renata.dallavedova?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=650&av=100013534782121&eav=AfZWzHNHYhM5-ltzI0u4s8LYfbRjpx-LeKLeVGkc8ZHVRz7uKO092L7G1xLOe-yeWIE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Adriana Zerbinati,,2019-05-18,,Qui non possono dire che c'erano solo quattro 😹😹😹😹,/adriana.zerbinati.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=650&av=100013534782121&eav=AfZWzHNHYhM5-ltzI0u4s8LYfbRjpx-LeKLeVGkc8ZHVRz7uKO092L7G1xLOe-yeWIE&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Enza Di Tucci,,2019-05-18,,,/profile.php?id=100004340449066&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1530&av=100013534782121&eav=Afasr1BFRFaAI3LYuduCTuL2iU_ld-sCP2VZeAE1vSXo4rKbXGoTlaJ4uohVhIDjpEw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianpiero Peirano,,2019-05-18,,,/gianpiero.peirano?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1530&av=100013534782121&eav=Afasr1BFRFaAI3LYuduCTuL2iU_ld-sCP2VZeAE1vSXo4rKbXGoTlaJ4uohVhIDjpEw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ombretta Nanni,,2019-05-18,1,Calenda!!! Come mai non sei salito sul palco???? 😂😂,/ombretta.nanni.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1530&av=100013534782121&eav=Afasr1BFRFaAI3LYuduCTuL2iU_ld-sCP2VZeAE1vSXo4rKbXGoTlaJ4uohVhIDjpEw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Bonacina,,2019-05-18,,,/monica.bonacina.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1530&av=100013534782121&eav=Afasr1BFRFaAI3LYuduCTuL2iU_ld-sCP2VZeAE1vSXo4rKbXGoTlaJ4uohVhIDjpEw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ada Ribes,,2019-05-18,,,/ada.ribes?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1530&av=100013534782121&eav=Afasr1BFRFaAI3LYuduCTuL2iU_ld-sCP2VZeAE1vSXo4rKbXGoTlaJ4uohVhIDjpEw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luca Lice,,2019-05-18,,,/luca.lice1970?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1530&av=100013534782121&eav=Afasr1BFRFaAI3LYuduCTuL2iU_ld-sCP2VZeAE1vSXo4rKbXGoTlaJ4uohVhIDjpEw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ermelinda Di Guglielmo,,2019-05-18,,,/ermelinda.diguglielmo.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1530&av=100013534782121&eav=Afasr1BFRFaAI3LYuduCTuL2iU_ld-sCP2VZeAE1vSXo4rKbXGoTlaJ4uohVhIDjpEw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mariella Di Gregorio,,2019-05-18,,,/alba.demitris.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1530&av=100013534782121&eav=Afasr1BFRFaAI3LYuduCTuL2iU_ld-sCP2VZeAE1vSXo4rKbXGoTlaJ4uohVhIDjpEw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Zorzan,,2019-05-18,,,/laura.zorzan?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1530&av=100013534782121&eav=Afasr1BFRFaAI3LYuduCTuL2iU_ld-sCP2VZeAE1vSXo4rKbXGoTlaJ4uohVhIDjpEw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Zorzan,,2019-05-18,,,/laura.zorzan?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1530&av=100013534782121&eav=Afasr1BFRFaAI3LYuduCTuL2iU_ld-sCP2VZeAE1vSXo4rKbXGoTlaJ4uohVhIDjpEw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Zorzan,,2019-05-18,,,/laura.zorzan?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1540&av=100013534782121&eav=AfaMadfs2jOI-xudPRJ09osmL4mh0f8DSS0aIIuQq_lDlONpiB9HY_JRWtoPWvI7H0c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Bonacina,,2019-05-18,,,/monica.bonacina.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1540&av=100013534782121&eav=AfaMadfs2jOI-xudPRJ09osmL4mh0f8DSS0aIIuQq_lDlONpiB9HY_JRWtoPWvI7H0c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Rossi,,2019-05-18,,,/profile.php?id=100010777653553&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1540&av=100013534782121&eav=AfaMadfs2jOI-xudPRJ09osmL4mh0f8DSS0aIIuQq_lDlONpiB9HY_JRWtoPWvI7H0c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tina Patamia,,2019-05-18,,,/tina.patamia?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1540&av=100013534782121&eav=AfaMadfs2jOI-xudPRJ09osmL4mh0f8DSS0aIIuQq_lDlONpiB9HY_JRWtoPWvI7H0c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Spina,,2019-05-18,,,/stefania.spina.7334?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1540&av=100013534782121&eav=AfaMadfs2jOI-xudPRJ09osmL4mh0f8DSS0aIIuQq_lDlONpiB9HY_JRWtoPWvI7H0c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Rossi,,2019-05-18,,,/profile.php?id=100010777653553&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1540&av=100013534782121&eav=AfaMadfs2jOI-xudPRJ09osmL4mh0f8DSS0aIIuQq_lDlONpiB9HY_JRWtoPWvI7H0c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Dory Casti,,2019-05-18,,,/dory.casti.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1540&av=100013534782121&eav=AfaMadfs2jOI-xudPRJ09osmL4mh0f8DSS0aIIuQq_lDlONpiB9HY_JRWtoPWvI7H0c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Cozzi,,2019-05-18,,,/profile.php?id=100010544348979&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1540&av=100013534782121&eav=AfaMadfs2jOI-xudPRJ09osmL4mh0f8DSS0aIIuQq_lDlONpiB9HY_JRWtoPWvI7H0c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Roberta Rossi,,2019-05-18,,,/profile.php?id=100010777653553&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1540&av=100013534782121&eav=AfaMadfs2jOI-xudPRJ09osmL4mh0f8DSS0aIIuQq_lDlONpiB9HY_JRWtoPWvI7H0c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Bonacina,,2019-05-18,,,/monica.bonacina.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1540&av=100013534782121&eav=AfaMadfs2jOI-xudPRJ09osmL4mh0f8DSS0aIIuQq_lDlONpiB9HY_JRWtoPWvI7H0c&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Valentina Bosio,ROOT,2019-05-18,,"Peccato per la pioggia, altrimenti sarebbe venuto pure il sergente García.",/valentina.bosio.338?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543765606030029&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD9-E9S6bLzV5ae&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Maria Cristina Lasagni,Valentina Bosio,2019-05-18,,"Valentina Bosio la foto che gira é di diverse ore prima della manifestazione. Per chi non é cieco, si vede benissimo che il palco é ancora vuoto.",/mariacristina.lasagni?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_543765606030029&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQD9-E9S6bLzV5ae&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Rita Spinelli,,2019-05-18,,Ne ho quasi 60.....mai vista una cosa simile!!!!! ♥♥♥♥,/rita.spinelli.35?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1550&av=100013534782121&eav=AfZIdWl8tjkDG1P7MTTPWfduFB1KFrGBfxhQwVX9Kfux1h-4MyZHWLzJOh9uVnzC8fw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Santamaria,,2019-05-18,,Un abbraccio a te e a tutti gli italiani presenti in piazza siamo tutti uniti grazie a te,/profile.php?id=100009562412079&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1550&av=100013534782121&eav=AfZIdWl8tjkDG1P7MTTPWfduFB1KFrGBfxhQwVX9Kfux1h-4MyZHWLzJOh9uVnzC8fw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lola Lotarda,,2019-05-18,1,SEI IL MIO CAPITANO VAIMATTEO STO LAVORANDO MA COME SE FOSSI CON TE,/lola.lotarda?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1550&av=100013534782121&eav=AfZIdWl8tjkDG1P7MTTPWfduFB1KFrGBfxhQwVX9Kfux1h-4MyZHWLzJOh9uVnzC8fw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Raffaella Giuca,,2019-05-18,1,Matteo Salvini hai una bellissima voce rassicurante.,/raffaella.giuca?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1550&av=100013534782121&eav=AfZIdWl8tjkDG1P7MTTPWfduFB1KFrGBfxhQwVX9Kfux1h-4MyZHWLzJOh9uVnzC8fw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1550&av=100013534782121&eav=AfZIdWl8tjkDG1P7MTTPWfduFB1KFrGBfxhQwVX9Kfux1h-4MyZHWLzJOh9uVnzC8fw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1550&av=100013534782121&eav=AfZIdWl8tjkDG1P7MTTPWfduFB1KFrGBfxhQwVX9Kfux1h-4MyZHWLzJOh9uVnzC8fw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppa Anconitano,,2019-05-18,,,/giuseppa.anconitano.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1550&av=100013534782121&eav=AfZIdWl8tjkDG1P7MTTPWfduFB1KFrGBfxhQwVX9Kfux1h-4MyZHWLzJOh9uVnzC8fw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1550&av=100013534782121&eav=AfZIdWl8tjkDG1P7MTTPWfduFB1KFrGBfxhQwVX9Kfux1h-4MyZHWLzJOh9uVnzC8fw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1550&av=100013534782121&eav=AfZIdWl8tjkDG1P7MTTPWfduFB1KFrGBfxhQwVX9Kfux1h-4MyZHWLzJOh9uVnzC8fw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Tirendi,,2019-05-18,,,/maria.tirendi.16?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1550&av=100013534782121&eav=AfZIdWl8tjkDG1P7MTTPWfduFB1KFrGBfxhQwVX9Kfux1h-4MyZHWLzJOh9uVnzC8fw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Adriana Zerbinati,,2019-05-18,,Qui non possono dire che c'erano solo quattro 😹😹😹😹,/adriana.zerbinati.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=660&av=100013534782121&eav=AfZlIU-moaTY5J_xSr6Xz0kqAm0kbz9v59IeDGgsL3d6WA8lvqstVaJBNkHw6sU0WMo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Di Gennaro,,2019-05-18,,"Grande Salvini ,alla faccia dei rosiconi pdiota",/anna.digennaro.9480?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=660&av=100013534782121&eav=AfZlIU-moaTY5J_xSr6Xz0kqAm0kbz9v59IeDGgsL3d6WA8lvqstVaJBNkHw6sU0WMo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvano Martinelli,,2019-05-18,,,/silvano.cantogesu?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=660&av=100013534782121&eav=AfZlIU-moaTY5J_xSr6Xz0kqAm0kbz9v59IeDGgsL3d6WA8lvqstVaJBNkHw6sU0WMo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Pigozzi,,2019-05-18,,Si siamo con te Matteo,/anna.pigozzi.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=660&av=100013534782121&eav=AfZlIU-moaTY5J_xSr6Xz0kqAm0kbz9v59IeDGgsL3d6WA8lvqstVaJBNkHw6sU0WMo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nora Oliva,,2019-05-18,,GRANDE MINISTRO😊😊😊ROSICHERANNO FINO AI GOMOTI,/nora.oliva.503?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=660&av=100013534782121&eav=AfZlIU-moaTY5J_xSr6Xz0kqAm0kbz9v59IeDGgsL3d6WA8lvqstVaJBNkHw6sU0WMo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Algerab,,2019-05-18,,,/carla.balgera?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=660&av=100013534782121&eav=AfZlIU-moaTY5J_xSr6Xz0kqAm0kbz9v59IeDGgsL3d6WA8lvqstVaJBNkHw6sU0WMo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizia Paradiso,,2019-05-18,,Evviva !!! Se lo sono preso tutto in coloooooooooo definitivamenteeeeeeee tutti gli altri ...,/maurizia.paradiso.79?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=660&av=100013534782121&eav=AfZlIU-moaTY5J_xSr6Xz0kqAm0kbz9v59IeDGgsL3d6WA8lvqstVaJBNkHw6sU0WMo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Trebbi,,2019-05-18,,,/atrebbi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=660&av=100013534782121&eav=AfZlIU-moaTY5J_xSr6Xz0kqAm0kbz9v59IeDGgsL3d6WA8lvqstVaJBNkHw6sU0WMo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ligenta Pletea,,2019-05-18,,Emozionante e Commovente vedere dal vivo. 💚💚,/profile.php?id=100005975868659&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=660&av=100013534782121&eav=AfZlIU-moaTY5J_xSr6Xz0kqAm0kbz9v59IeDGgsL3d6WA8lvqstVaJBNkHw6sU0WMo&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1560&av=100013534782121&eav=AfYiGFEH4qnuueRlCndH4H-OffUmkNo9PLrKwiWe874tIQKNEB8tw7UnGCKdMsBaVtg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1560&av=100013534782121&eav=AfYiGFEH4qnuueRlCndH4H-OffUmkNo9PLrKwiWe874tIQKNEB8tw7UnGCKdMsBaVtg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1560&av=100013534782121&eav=AfYiGFEH4qnuueRlCndH4H-OffUmkNo9PLrKwiWe874tIQKNEB8tw7UnGCKdMsBaVtg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1560&av=100013534782121&eav=AfYiGFEH4qnuueRlCndH4H-OffUmkNo9PLrKwiWe874tIQKNEB8tw7UnGCKdMsBaVtg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1560&av=100013534782121&eav=AfYiGFEH4qnuueRlCndH4H-OffUmkNo9PLrKwiWe874tIQKNEB8tw7UnGCKdMsBaVtg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maurizio Bravi,,2019-05-18,,,/bravi.maurizio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1560&av=100013534782121&eav=AfYiGFEH4qnuueRlCndH4H-OffUmkNo9PLrKwiWe874tIQKNEB8tw7UnGCKdMsBaVtg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Virginia Muffato,,2019-05-18,,,/virginia.muffato.1?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1560&av=100013534782121&eav=AfYiGFEH4qnuueRlCndH4H-OffUmkNo9PLrKwiWe874tIQKNEB8tw7UnGCKdMsBaVtg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1560&av=100013534782121&eav=AfYiGFEH4qnuueRlCndH4H-OffUmkNo9PLrKwiWe874tIQKNEB8tw7UnGCKdMsBaVtg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1560&av=100013534782121&eav=AfYiGFEH4qnuueRlCndH4H-OffUmkNo9PLrKwiWe874tIQKNEB8tw7UnGCKdMsBaVtg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1560&av=100013534782121&eav=AfYiGFEH4qnuueRlCndH4H-OffUmkNo9PLrKwiWe874tIQKNEB8tw7UnGCKdMsBaVtg&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Toniazzo,,2019-05-18,,Bravo matteo stai andando alla grande!!!!❤❤❤❤❤❤❤❤,/profile.php?id=100035121870026&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=670&av=100013534782121&eav=AfaDYsL-PIguViFy0IxMt77CygKgHeXOAIHIDxMNFC8G1pQFG8cDQQFw41hFL1axFMw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Loredana Catrambone,,2019-05-18,1,,/profile.php?id=100009112622503&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=670&av=100013534782121&eav=AfaDYsL-PIguViFy0IxMt77CygKgHeXOAIHIDxMNFC8G1pQFG8cDQQFw41hFL1axFMw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesco Cogoni,,2019-05-18,,Forza Matteo Salvini,/francesco.cogoni.336?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=670&av=100013534782121&eav=AfaDYsL-PIguViFy0IxMt77CygKgHeXOAIHIDxMNFC8G1pQFG8cDQQFw41hFL1axFMw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Caterina Tolotta,,2019-05-18,,Tantissimi . Grande Salvini,/caterina.tolotta.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=670&av=100013534782121&eav=AfaDYsL-PIguViFy0IxMt77CygKgHeXOAIHIDxMNFC8G1pQFG8cDQQFw41hFL1axFMw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Leonardo Prencipe,,2019-05-18,,Ahahahhh A Salvì... non tallargà! Rivediti Il video di Beppe Grillo con il M5S. Non vedrai mai una piazza colma come questo movimento. https://youtu.be/SXR2KeiHmGo,/leonardo.prencipe.71?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=670&av=100013534782121&eav=AfaDYsL-PIguViFy0IxMt77CygKgHeXOAIHIDxMNFC8G1pQFG8cDQQFw41hFL1axFMw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giliola Trolli,,2019-05-18,,,/giliola.trolli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=670&av=100013534782121&eav=AfaDYsL-PIguViFy0IxMt77CygKgHeXOAIHIDxMNFC8G1pQFG8cDQQFw41hFL1axFMw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia De Simone,,2019-05-18,1,Ma soprattutto andate a votare..,/patrizia.scanu.12?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=670&av=100013534782121&eav=AfaDYsL-PIguViFy0IxMt77CygKgHeXOAIHIDxMNFC8G1pQFG8cDQQFw41hFL1axFMw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Biondi,,2019-05-18,,IMMENSO CUORE LEGHISTA EUROPEO....,/carla.biondi.961?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=670&av=100013534782121&eav=AfaDYsL-PIguViFy0IxMt77CygKgHeXOAIHIDxMNFC8G1pQFG8cDQQFw41hFL1axFMw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Natasha Moroz,,2019-05-18,,E meglio senza parole ' e tanti fatti ... 😉,/natasha.moroz.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=670&av=100013534782121&eav=AfaDYsL-PIguViFy0IxMt77CygKgHeXOAIHIDxMNFC8G1pQFG8cDQQFw41hFL1axFMw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Albert Edwin Flury,,2019-05-18,2,Una piazza mai vista...,/albert.ritrattista?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=670&av=100013534782121&eav=AfaDYsL-PIguViFy0IxMt77CygKgHeXOAIHIDxMNFC8G1pQFG8cDQQFw41hFL1axFMw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1570&av=100013534782121&eav=AfbzvouY3axx0hlI-dBRZXEZdeq04nJ6IGKTMszNAljJz0OQ4o3qjmQLOnTPqas6nsM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1570&av=100013534782121&eav=AfbzvouY3axx0hlI-dBRZXEZdeq04nJ6IGKTMszNAljJz0OQ4o3qjmQLOnTPqas6nsM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1570&av=100013534782121&eav=AfbzvouY3axx0hlI-dBRZXEZdeq04nJ6IGKTMszNAljJz0OQ4o3qjmQLOnTPqas6nsM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1570&av=100013534782121&eav=AfbzvouY3axx0hlI-dBRZXEZdeq04nJ6IGKTMszNAljJz0OQ4o3qjmQLOnTPqas6nsM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1570&av=100013534782121&eav=AfbzvouY3axx0hlI-dBRZXEZdeq04nJ6IGKTMszNAljJz0OQ4o3qjmQLOnTPqas6nsM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1570&av=100013534782121&eav=AfbzvouY3axx0hlI-dBRZXEZdeq04nJ6IGKTMszNAljJz0OQ4o3qjmQLOnTPqas6nsM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1570&av=100013534782121&eav=AfbzvouY3axx0hlI-dBRZXEZdeq04nJ6IGKTMszNAljJz0OQ4o3qjmQLOnTPqas6nsM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,1,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1570&av=100013534782121&eav=AfbzvouY3axx0hlI-dBRZXEZdeq04nJ6IGKTMszNAljJz0OQ4o3qjmQLOnTPqas6nsM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1570&av=100013534782121&eav=AfbzvouY3axx0hlI-dBRZXEZdeq04nJ6IGKTMszNAljJz0OQ4o3qjmQLOnTPqas6nsM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1570&av=100013534782121&eav=AfbzvouY3axx0hlI-dBRZXEZdeq04nJ6IGKTMszNAljJz0OQ4o3qjmQLOnTPqas6nsM&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Modugno,,2019-05-18,,+ bella cosa non c' è GRAZIE di esistere,/profile.php?id=100010694700697&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=680&av=100013534782121&eav=AfadofszYXNrou0pf0W9_Fg8MigwQTR7F4dvms-r1MgjIQyc0OCrqJA1SvRZwnem7IA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pino Mar,,2019-05-18,,CONSIGLI X GLI ACQUISTI AI ROSICONI : POMATA BRUCIA - CUL,/profile.php?id=100035268701087&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=680&av=100013534782121&eav=AfadofszYXNrou0pf0W9_Fg8MigwQTR7F4dvms-r1MgjIQyc0OCrqJA1SvRZwnem7IA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Violanda Caiazzo,,2019-05-18,,,/violanda.caiazzo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=680&av=100013534782121&eav=AfadofszYXNrou0pf0W9_Fg8MigwQTR7F4dvms-r1MgjIQyc0OCrqJA1SvRZwnem7IA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Folenga,,2019-05-18,,Orgogliosa di te ....GRANDE MATTEO....💚💚💚,/carla.folenga?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=680&av=100013534782121&eav=AfadofszYXNrou0pf0W9_Fg8MigwQTR7F4dvms-r1MgjIQyc0OCrqJA1SvRZwnem7IA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alessandro Luperdi,,2019-05-18,,"Vorrei vedere Salvinio,giochi in casa.",/alessandro.luperdi.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=680&av=100013534782121&eav=AfadofszYXNrou0pf0W9_Fg8MigwQTR7F4dvms-r1MgjIQyc0OCrqJA1SvRZwnem7IA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucio Coccia,,2019-05-18,,Ce semo è quasi fatta stamo anna' a dama,/lucio.coccia.1238?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=680&av=100013534782121&eav=AfadofszYXNrou0pf0W9_Fg8MigwQTR7F4dvms-r1MgjIQyc0OCrqJA1SvRZwnem7IA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giulio Bucciante,,2019-05-18,,http://www.infoflashnews.it/figlio-a-letto-con-la-zia,/giulio.bucciante?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=680&av=100013534782121&eav=AfadofszYXNrou0pf0W9_Fg8MigwQTR7F4dvms-r1MgjIQyc0OCrqJA1SvRZwnem7IA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marisa Iezzi,,2019-05-18,,Grandissimo!!!Matteo,/profile.php?id=100006656897549&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=680&av=100013534782121&eav=AfadofszYXNrou0pf0W9_Fg8MigwQTR7F4dvms-r1MgjIQyc0OCrqJA1SvRZwnem7IA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sergio Morea,,2019-05-18,1,Piu' striscioni..piu' voti alla lega!!,/sergio.morea?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=680&av=100013534782121&eav=AfadofszYXNrou0pf0W9_Fg8MigwQTR7F4dvms-r1MgjIQyc0OCrqJA1SvRZwnem7IA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vincenzo Pedrotti,,2019-05-18,1,"Altro che i comizi della sx.. 4 gatti!!! Oggi a Milano, pienoooooo",/vincenzo.pedrotti.54?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=680&av=100013534782121&eav=AfadofszYXNrou0pf0W9_Fg8MigwQTR7F4dvms-r1MgjIQyc0OCrqJA1SvRZwnem7IA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1580&av=100013534782121&eav=AfZQdbKwBQTeUzWxJKqNYg7nKN2izuwk5CFEyWv3ME6yydV7NwSe3AVRA0Nf2zUjS4M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1580&av=100013534782121&eav=AfZQdbKwBQTeUzWxJKqNYg7nKN2izuwk5CFEyWv3ME6yydV7NwSe3AVRA0Nf2zUjS4M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1580&av=100013534782121&eav=AfZQdbKwBQTeUzWxJKqNYg7nKN2izuwk5CFEyWv3ME6yydV7NwSe3AVRA0Nf2zUjS4M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1580&av=100013534782121&eav=AfZQdbKwBQTeUzWxJKqNYg7nKN2izuwk5CFEyWv3ME6yydV7NwSe3AVRA0Nf2zUjS4M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1580&av=100013534782121&eav=AfZQdbKwBQTeUzWxJKqNYg7nKN2izuwk5CFEyWv3ME6yydV7NwSe3AVRA0Nf2zUjS4M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1580&av=100013534782121&eav=AfZQdbKwBQTeUzWxJKqNYg7nKN2izuwk5CFEyWv3ME6yydV7NwSe3AVRA0Nf2zUjS4M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1580&av=100013534782121&eav=AfZQdbKwBQTeUzWxJKqNYg7nKN2izuwk5CFEyWv3ME6yydV7NwSe3AVRA0Nf2zUjS4M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1580&av=100013534782121&eav=AfZQdbKwBQTeUzWxJKqNYg7nKN2izuwk5CFEyWv3ME6yydV7NwSe3AVRA0Nf2zUjS4M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1580&av=100013534782121&eav=AfZQdbKwBQTeUzWxJKqNYg7nKN2izuwk5CFEyWv3ME6yydV7NwSe3AVRA0Nf2zUjS4M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1580&av=100013534782121&eav=AfZQdbKwBQTeUzWxJKqNYg7nKN2izuwk5CFEyWv3ME6yydV7NwSe3AVRA0Nf2zUjS4M&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bruna Paravisi,,2019-05-18,,In 15 o 20 alla fine pochissimi ❤️,/bruna.paravisi.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=690&av=100013534782121&eav=AfZpMj0H1_ayWd-8Ryc0Ex4Yx0V8_rrYRODzveHxJh1oro_4IRNxka6I2U4ZRiEEWD4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luigina Salvatoni,,2019-05-18,,La sinistra e i 5 stelle una piazza così se la sognano,/luigina.salvatoni?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=690&av=100013534782121&eav=AfZpMj0H1_ayWd-8Ryc0Ex4Yx0V8_rrYRODzveHxJh1oro_4IRNxka6I2U4ZRiEEWD4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maura Stagnoli,,2019-05-18,,Forza capitano siamo tutti con te,/maura.blonde1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=690&av=100013534782121&eav=AfZpMj0H1_ayWd-8Ryc0Ex4Yx0V8_rrYRODzveHxJh1oro_4IRNxka6I2U4ZRiEEWD4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ida Maria Guarnieri,,2019-05-18,,Matteo sei il migliore!!,/ida.m.guarnieri?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=690&av=100013534782121&eav=AfZpMj0H1_ayWd-8Ryc0Ex4Yx0V8_rrYRODzveHxJh1oro_4IRNxka6I2U4ZRiEEWD4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Davide Cariello,,2019-05-18,,,/dave.greenfiver?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=690&av=100013534782121&eav=AfZpMj0H1_ayWd-8Ryc0Ex4Yx0V8_rrYRODzveHxJh1oro_4IRNxka6I2U4ZRiEEWD4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Massimo Rotellini,,2019-05-18,1,"Rosaria Merola approvo , buon commento 👍",/massimo.rotellini.39?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=690&av=100013534782121&eav=AfZpMj0H1_ayWd-8Ryc0Ex4Yx0V8_rrYRODzveHxJh1oro_4IRNxka6I2U4ZRiEEWD4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vera Bagnoli,,2019-05-18,,Sei forte e come te nessuno mai..,/veruccia.bagnoli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=690&av=100013534782121&eav=AfZpMj0H1_ayWd-8Ryc0Ex4Yx0V8_rrYRODzveHxJh1oro_4IRNxka6I2U4ZRiEEWD4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pinuccia Boselli,,2019-05-18,,ANCHE ZINGARETTI HA TUTTA QUESTA FOLLA!!!!!,/pinuccia.boselli.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=690&av=100013534782121&eav=AfZpMj0H1_ayWd-8Ryc0Ex4Yx0V8_rrYRODzveHxJh1oro_4IRNxka6I2U4ZRiEEWD4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anna Severini,,2019-05-18,,Questa è una piazza allargata a 3 d ........,/anna.severini.39?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=690&av=100013534782121&eav=AfZpMj0H1_ayWd-8Ryc0Ex4Yx0V8_rrYRODzveHxJh1oro_4IRNxka6I2U4ZRiEEWD4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ottavio Natati,,2019-05-18,1,"I GRULLINI ORA DIRANNO PIAZZA VUOTA, LEGA IN DIFFICOLTA', SE QUESTA E' CRISI, SPERIAMO CONTINUI",/ottavio.natati.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=690&av=100013534782121&eav=AfZpMj0H1_ayWd-8Ryc0Ex4Yx0V8_rrYRODzveHxJh1oro_4IRNxka6I2U4ZRiEEWD4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1590&av=100013534782121&eav=Afb-HD2MMj0LdveuS4QIsfQWJ187ameqPNFIMH119PAgVVty6E8lQfsfTIo9zOpvIoA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1590&av=100013534782121&eav=Afb-HD2MMj0LdveuS4QIsfQWJ187ameqPNFIMH119PAgVVty6E8lQfsfTIo9zOpvIoA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1590&av=100013534782121&eav=Afb-HD2MMj0LdveuS4QIsfQWJ187ameqPNFIMH119PAgVVty6E8lQfsfTIo9zOpvIoA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1590&av=100013534782121&eav=Afb-HD2MMj0LdveuS4QIsfQWJ187ameqPNFIMH119PAgVVty6E8lQfsfTIo9zOpvIoA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1590&av=100013534782121&eav=Afb-HD2MMj0LdveuS4QIsfQWJ187ameqPNFIMH119PAgVVty6E8lQfsfTIo9zOpvIoA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1590&av=100013534782121&eav=Afb-HD2MMj0LdveuS4QIsfQWJ187ameqPNFIMH119PAgVVty6E8lQfsfTIo9zOpvIoA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabry Ronchi,,2019-05-18,,,/profile.php?id=100006443777958&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1590&av=100013534782121&eav=Afb-HD2MMj0LdveuS4QIsfQWJ187ameqPNFIMH119PAgVVty6E8lQfsfTIo9zOpvIoA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudia Claudia Martin,,2019-05-18,,,/claudia.claudiamartin?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1590&av=100013534782121&eav=Afb-HD2MMj0LdveuS4QIsfQWJ187ameqPNFIMH119PAgVVty6E8lQfsfTIo9zOpvIoA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patty Schintu,,2019-05-18,,,/patty.schintu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1590&av=100013534782121&eav=Afb-HD2MMj0LdveuS4QIsfQWJ187ameqPNFIMH119PAgVVty6E8lQfsfTIo9zOpvIoA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patty Schintu,,2019-05-18,,,/patty.schintu?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1590&av=100013534782121&eav=Afb-HD2MMj0LdveuS4QIsfQWJ187ameqPNFIMH119PAgVVty6E8lQfsfTIo9zOpvIoA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anto Abbatemarco,,2019-05-18,,,/anto.abbatemarco?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1600&av=100013534782121&eav=AfY3atg7ItZJOezZIIBgo-Oliy11qm2OYrpJjrbyLnnTy5uLxiq3CrlITSX6akaK0X8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anto Abbatemarco,,2019-05-18,,,/anto.abbatemarco?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1600&av=100013534782121&eav=AfY3atg7ItZJOezZIIBgo-Oliy11qm2OYrpJjrbyLnnTy5uLxiq3CrlITSX6akaK0X8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Anto Abbatemarco,,2019-05-18,,,/anto.abbatemarco?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1600&av=100013534782121&eav=AfY3atg7ItZJOezZIIBgo-Oliy11qm2OYrpJjrbyLnnTy5uLxiq3CrlITSX6akaK0X8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giulio Simonetti,,2019-05-18,,,/giulio.simonetti.18?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1600&av=100013534782121&eav=AfY3atg7ItZJOezZIIBgo-Oliy11qm2OYrpJjrbyLnnTy5uLxiq3CrlITSX6akaK0X8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Jessica Enzo,,2019-05-18,,,/jessica.enzo.79?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1600&av=100013534782121&eav=AfY3atg7ItZJOezZIIBgo-Oliy11qm2OYrpJjrbyLnnTy5uLxiq3CrlITSX6akaK0X8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Coccoli Giuseppe,,2019-05-18,,,/coccoli.giuseppe.73?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1600&av=100013534782121&eav=AfY3atg7ItZJOezZIIBgo-Oliy11qm2OYrpJjrbyLnnTy5uLxiq3CrlITSX6akaK0X8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Coccoli Giuseppe,,2019-05-18,,,/coccoli.giuseppe.73?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1600&av=100013534782121&eav=AfY3atg7ItZJOezZIIBgo-Oliy11qm2OYrpJjrbyLnnTy5uLxiq3CrlITSX6akaK0X8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pino Rigante,,2019-05-18,,,/pino.rigante?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1600&av=100013534782121&eav=AfY3atg7ItZJOezZIIBgo-Oliy11qm2OYrpJjrbyLnnTy5uLxiq3CrlITSX6akaK0X8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rita Gara,,2019-05-18,,,/rita.gara.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1600&av=100013534782121&eav=AfY3atg7ItZJOezZIIBgo-Oliy11qm2OYrpJjrbyLnnTy5uLxiq3CrlITSX6akaK0X8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rita Gara,,2019-05-18,,,/rita.gara.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1600&av=100013534782121&eav=AfY3atg7ItZJOezZIIBgo-Oliy11qm2OYrpJjrbyLnnTy5uLxiq3CrlITSX6akaK0X8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriele Smallboy Nerone,ROOT,2019-05-18,,per la madonna a sto punto possiamo anche non andare a votare,/smallboyrex?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301915484030931&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC4euxBU8np0W_3&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Adriana Pesavento,Gabriele Smallboy Nerone,2019-05-18,,Gabriele Smallboy Nerone no noi siamo democratici.....il 26 saremo ancora di più,/adriana.pesavento?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301915484030931&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC4euxBU8np0W_3&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Gabriele Smallboy Nerone,Gabriele Smallboy Nerone,2019-05-18,,i democratici esistevano negli anni 60-70.....voi siete i zombi di quei democratici...... finirete nel dimenticatoio.la gente non vi vota piu vi schifa avete perso milioni di voti...di gente come te che quando entra dentro lo sgabuzzino vota lega e poi dice di essere democratico.ma va a cagè và...,/smallboyrex?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_301915484030931&count=2&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQC4euxBU8np0W_3&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Kevin Quero,,2019-05-18,,Non che sia chissà che folla in realtà eh....,/kevin.quero.14?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=700&av=100013534782121&eav=Afb0QH1CcDA_bXlA3j8JO5OvBXwYMpqP_man3ny-2jkdjxJfeHMpr0hitkoQJOEJdj4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nino Ferrari,,2019-05-18,,C’era anche Giggino? 😂😂😂,/nino.ferrari.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=700&av=100013534782121&eav=Afb0QH1CcDA_bXlA3j8JO5OvBXwYMpqP_man3ny-2jkdjxJfeHMpr0hitkoQJOEJdj4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marianna Spadea,,2019-05-18,,,/marianna.spadea.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=700&av=100013534782121&eav=Afb0QH1CcDA_bXlA3j8JO5OvBXwYMpqP_man3ny-2jkdjxJfeHMpr0hitkoQJOEJdj4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fernando De Grandis,,2019-05-18,,Un milione in Piazza Duomo!....😂,/degrandisfernando62?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=700&av=100013534782121&eav=Afb0QH1CcDA_bXlA3j8JO5OvBXwYMpqP_man3ny-2jkdjxJfeHMpr0hitkoQJOEJdj4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nicodemo Ortiga,,2019-05-18,,,/nicodemo.ortiga?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=700&av=100013534782121&eav=Afb0QH1CcDA_bXlA3j8JO5OvBXwYMpqP_man3ny-2jkdjxJfeHMpr0hitkoQJOEJdj4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giovanni Rizza,,2019-05-18,,,/giovanni.cz.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=700&av=100013534782121&eav=Afb0QH1CcDA_bXlA3j8JO5OvBXwYMpqP_man3ny-2jkdjxJfeHMpr0hitkoQJOEJdj4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Piera Calabrice,,2019-05-18,,Il popolo ha capito con chi stare forza Matteo 🇮🇹💚💚💚,/piera.calabrice?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=700&av=100013534782121&eav=Afb0QH1CcDA_bXlA3j8JO5OvBXwYMpqP_man3ny-2jkdjxJfeHMpr0hitkoQJOEJdj4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ottavia Laguzzi,,2019-05-18,,,/ottavia.laguzzi?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=700&av=100013534782121&eav=Afb0QH1CcDA_bXlA3j8JO5OvBXwYMpqP_man3ny-2jkdjxJfeHMpr0hitkoQJOEJdj4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nicola Smiths,,2019-05-18,,Incrociamo le dita!!!,/nicola.smiths.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=700&av=100013534782121&eav=Afb0QH1CcDA_bXlA3j8JO5OvBXwYMpqP_man3ny-2jkdjxJfeHMpr0hitkoQJOEJdj4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Franco Puglia,ROOT,2019-05-18,1,Hai le televisioni del PD contro ma la gente è con te,/franco.puglia.37?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407405513434958&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA8737GWqKiLywJ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Valeska Zaia,Franco Puglia,2019-05-18,1,Franco Puglia grande Franco!,/valeska.zaia?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407405513434958&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA8737GWqKiLywJ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Franco Puglia,Franco Puglia,2019-05-18,1,È cosí Valeska..😉,/franco.puglia.37?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=325209824821404_407405513434958&count=2&curr&pc=1&ft_ent_identifier=325209824821404&gfid=AQA8737GWqKiLywJ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Angelo Sucameli,,2019-05-18,1,Sono con voi. Vai Salvini,/angelo.sucameli.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=710&av=100013534782121&eav=AfaGotL7t6hIddPUMmT-lMh2Vyep24xiiw0G3Iqc-28v1GNPvDWOQ2UITDQOiHw5tR0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia de Ciccio,,2019-05-18,,Sei grande capitano siamo con te,/lucia.deciccio?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=710&av=100013534782121&eav=AfaGotL7t6hIddPUMmT-lMh2Vyep24xiiw0G3Iqc-28v1GNPvDWOQ2UITDQOiHw5tR0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pier Paolo Mescoli,,2019-05-18,2,Piacerebbe al PD e compagni avere delle piazze così!!!,/pierpaolo.mescoli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=710&av=100013534782121&eav=AfaGotL7t6hIddPUMmT-lMh2Vyep24xiiw0G3Iqc-28v1GNPvDWOQ2UITDQOiHw5tR0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Davide Bettoni,,2019-05-18,,Veramente IMPRESSIONANTE!!!!! CONGRATULAZIONI MATTEO!!!!!.....,/davide.bettoni.16?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=710&av=100013534782121&eav=AfaGotL7t6hIddPUMmT-lMh2Vyep24xiiw0G3Iqc-28v1GNPvDWOQ2UITDQOiHw5tR0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Bavari,,2019-05-18,1,"Complimenti Ministro Salvini, un Tripudio davvero Commovente.",/giuseppe.bavari.94?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=710&av=100013534782121&eav=AfaGotL7t6hIddPUMmT-lMh2Vyep24xiiw0G3Iqc-28v1GNPvDWOQ2UITDQOiHw5tR0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giuseppe Maurizio Balamo,,2019-05-18,,La7 ( la setta) sta dando voce ai suoi padroni sinistri,/giuseppemaurizio.balamo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=710&av=100013534782121&eav=AfaGotL7t6hIddPUMmT-lMh2Vyep24xiiw0G3Iqc-28v1GNPvDWOQ2UITDQOiHw5tR0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cristina Cencetti,,2019-05-18,1,,/profile.php?id=100011112935145&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=710&av=100013534782121&eav=AfaGotL7t6hIddPUMmT-lMh2Vyep24xiiw0G3Iqc-28v1GNPvDWOQ2UITDQOiHw5tR0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Vaona,,2019-05-18,1,Parlano solo degli antagonisti. Pietà,/profile.php?id=100010347030121&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=710&av=100013534782121&eav=AfaGotL7t6hIddPUMmT-lMh2Vyep24xiiw0G3Iqc-28v1GNPvDWOQ2UITDQOiHw5tR0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Teresa de Prisco,,2019-05-18,,,/profile.php?id=100004499806490&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=710&av=100013534782121&eav=AfaGotL7t6hIddPUMmT-lMh2Vyep24xiiw0G3Iqc-28v1GNPvDWOQ2UITDQOiHw5tR0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesca Francesca,,2019-05-18,,,/francesca.garz?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=710&av=100013534782121&eav=AfaGotL7t6hIddPUMmT-lMh2Vyep24xiiw0G3Iqc-28v1GNPvDWOQ2UITDQOiHw5tR0&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Grazia Mauri,,2019-05-18,,Va innanz e lasa perd i baluba!! Forza Matteooooooooooooooo!,/mariagraziamauri?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1610&av=100013534782121&eav=AfYu4QaLFAK9iZJIeTMGL3-4H9o2vSZJR78MjNK0Q3mBq18BvGUmaJ1Sa7hnzpTIiqA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carla Guidi,,2019-05-18,,Bellissimo vederti a contatto con le persone!!!,/carla.guidi.31?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1610&av=100013534782121&eav=AfYu4QaLFAK9iZJIeTMGL3-4H9o2vSZJR78MjNK0Q3mBq18BvGUmaJ1Sa7hnzpTIiqA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1610&av=100013534782121&eav=AfYu4QaLFAK9iZJIeTMGL3-4H9o2vSZJR78MjNK0Q3mBq18BvGUmaJ1Sa7hnzpTIiqA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1610&av=100013534782121&eav=AfYu4QaLFAK9iZJIeTMGL3-4H9o2vSZJR78MjNK0Q3mBq18BvGUmaJ1Sa7hnzpTIiqA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Agata Curto,,2019-05-18,,,/agata.curto.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1610&av=100013534782121&eav=AfYu4QaLFAK9iZJIeTMGL3-4H9o2vSZJR78MjNK0Q3mBq18BvGUmaJ1Sa7hnzpTIiqA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvia Gualdoni,,2019-05-18,1,,/silvia.gualdoni.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1610&av=100013534782121&eav=AfYu4QaLFAK9iZJIeTMGL3-4H9o2vSZJR78MjNK0Q3mBq18BvGUmaJ1Sa7hnzpTIiqA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gaspare Licausi,,2019-05-18,,,/gaspare.licausi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1610&av=100013534782121&eav=AfYu4QaLFAK9iZJIeTMGL3-4H9o2vSZJR78MjNK0Q3mBq18BvGUmaJ1Sa7hnzpTIiqA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1610&av=100013534782121&eav=AfYu4QaLFAK9iZJIeTMGL3-4H9o2vSZJR78MjNK0Q3mBq18BvGUmaJ1Sa7hnzpTIiqA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary White,,2019-05-18,,,/profile.php?id=100002963444386&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1610&av=100013534782121&eav=AfYu4QaLFAK9iZJIeTMGL3-4H9o2vSZJR78MjNK0Q3mBq18BvGUmaJ1Sa7hnzpTIiqA&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Efisia Salaris,,2019-05-18,,,/efi64?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=720&av=100013534782121&eav=AfaV0p2tDed0xkf3BwYSkX_R1IHE29z5iPomfwjR177ZdKE43xk8_xAJ9EL4fYpwSs4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Renato Leonella Veriani,,2019-05-18,,,/renato.veriani?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=720&av=100013534782121&eav=AfaV0p2tDed0xkf3BwYSkX_R1IHE29z5iPomfwjR177ZdKE43xk8_xAJ9EL4fYpwSs4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Biasiolo,,2019-05-18,1,Sono curiosa della reazione di Mentana stasera !!!!!!!!!!!!gli rosicano le chiappe !!,/gabriella.biasiolo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=720&av=100013534782121&eav=AfaV0p2tDed0xkf3BwYSkX_R1IHE29z5iPomfwjR177ZdKE43xk8_xAJ9EL4fYpwSs4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marco Aldini,,2019-05-18,,FORZA CAPITANO I BALCONI NON CI FERMERANNO!!!! 🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹🇮🇹,/mak.beard.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=720&av=100013534782121&eav=AfaV0p2tDed0xkf3BwYSkX_R1IHE29z5iPomfwjR177ZdKE43xk8_xAJ9EL4fYpwSs4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Paola Laura Leporini,,2019-05-18,,Ministro salvini é l'unica salvezza per un'Italia migliore👏👏👏,/paolalaura.leporini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=720&av=100013534782121&eav=AfaV0p2tDed0xkf3BwYSkX_R1IHE29z5iPomfwjR177ZdKE43xk8_xAJ9EL4fYpwSs4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosy Rota,,2019-05-18,2,,/rosy.rota?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=720&av=100013534782121&eav=AfaV0p2tDed0xkf3BwYSkX_R1IHE29z5iPomfwjR177ZdKE43xk8_xAJ9EL4fYpwSs4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Girasole Giallo,,2019-05-18,,"Grazie Capitano, sempre avanti <3",/girasole.giallo1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=720&av=100013534782121&eav=AfaV0p2tDed0xkf3BwYSkX_R1IHE29z5iPomfwjR177ZdKE43xk8_xAJ9EL4fYpwSs4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Belardinelli,,2019-05-18,,Complimenti Salvini sei il migliore🌞,/gabriella.belardinelli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=720&av=100013534782121&eav=AfaV0p2tDed0xkf3BwYSkX_R1IHE29z5iPomfwjR177ZdKE43xk8_xAJ9EL4fYpwSs4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vanna Rossetti,,2019-05-18,1,,/profile.php?id=100006838936944&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=720&av=100013534782121&eav=AfaV0p2tDed0xkf3BwYSkX_R1IHE29z5iPomfwjR177ZdKE43xk8_xAJ9EL4fYpwSs4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Nardo,,2019-05-18,,Ma devo arrivare un giorno prima x vederti????,/antonella.nardo.37?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=720&av=100013534782121&eav=AfaV0p2tDed0xkf3BwYSkX_R1IHE29z5iPomfwjR177ZdKE43xk8_xAJ9EL4fYpwSs4&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gaspare Licausi,,2019-05-18,,,/gaspare.licausi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1620&av=100013534782121&eav=AfaOmbADpMYzbPYrm_uWeKh0KN9jOwXESxG5UDkgIDBLsjdEm5ig_d-fHI9sb1Op-WU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1620&av=100013534782121&eav=AfaOmbADpMYzbPYrm_uWeKh0KN9jOwXESxG5UDkgIDBLsjdEm5ig_d-fHI9sb1Op-WU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1620&av=100013534782121&eav=AfaOmbADpMYzbPYrm_uWeKh0KN9jOwXESxG5UDkgIDBLsjdEm5ig_d-fHI9sb1Op-WU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Simona Fortuna,,2019-05-18,,,/fiore.flower?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1620&av=100013534782121&eav=AfaOmbADpMYzbPYrm_uWeKh0KN9jOwXESxG5UDkgIDBLsjdEm5ig_d-fHI9sb1Op-WU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1620&av=100013534782121&eav=AfaOmbADpMYzbPYrm_uWeKh0KN9jOwXESxG5UDkgIDBLsjdEm5ig_d-fHI9sb1Op-WU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1620&av=100013534782121&eav=AfaOmbADpMYzbPYrm_uWeKh0KN9jOwXESxG5UDkgIDBLsjdEm5ig_d-fHI9sb1Op-WU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1620&av=100013534782121&eav=AfaOmbADpMYzbPYrm_uWeKh0KN9jOwXESxG5UDkgIDBLsjdEm5ig_d-fHI9sb1Op-WU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1620&av=100013534782121&eav=AfaOmbADpMYzbPYrm_uWeKh0KN9jOwXESxG5UDkgIDBLsjdEm5ig_d-fHI9sb1Op-WU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gaspare Licausi,,2019-05-18,,,/gaspare.licausi?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1620&av=100013534782121&eav=AfaOmbADpMYzbPYrm_uWeKh0KN9jOwXESxG5UDkgIDBLsjdEm5ig_d-fHI9sb1Op-WU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary White,,2019-05-18,,,/profile.php?id=100002963444386&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1620&av=100013534782121&eav=AfaOmbADpMYzbPYrm_uWeKh0KN9jOwXESxG5UDkgIDBLsjdEm5ig_d-fHI9sb1Op-WU&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Piero Piero,,2019-05-18,2,Cancello anche Rai news dai miei tv,/progetto.immagine.52?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=730&av=100013534782121&eav=AfZJoMxiESfOprmgE04catHPKArTMaG_0l7PseBtaQTNWYrS7ukblAA8H8nCOEXThVU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Piero Piero,,2019-05-18,,La Guerritote su Rai news è sconcertata😂😂😂😂😂😂😂😂😂,/progetto.immagine.52?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=730&av=100013534782121&eav=AfZJoMxiESfOprmgE04catHPKArTMaG_0l7PseBtaQTNWYrS7ukblAA8H8nCOEXThVU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ida Galdi,,2019-05-18,4,Emozionante!!!!,/ida.galdi.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=730&av=100013534782121&eav=AfZJoMxiESfOprmgE04catHPKArTMaG_0l7PseBtaQTNWYrS7ukblAA8H8nCOEXThVU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gentile Giuseppe,,2019-05-18,,Per la sinistra sono un po di centinaia 😂,/gentile.giuseppe.50?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=730&av=100013534782121&eav=AfZJoMxiESfOprmgE04catHPKArTMaG_0l7PseBtaQTNWYrS7ukblAA8H8nCOEXThVU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Tiziana Tomeo,,2019-05-18,1,"LA MAGISTRATURA ONORARIA L'HAI DIMENTICATA MATTEO...LA NOSTRA CONDIZIONE L'HAI PEGGIORATA ,TU E QUEL DJ DI MINISTRO",/avvtizianatomeo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=730&av=100013534782121&eav=AfZJoMxiESfOprmgE04catHPKArTMaG_0l7PseBtaQTNWYrS7ukblAA8H8nCOEXThVU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Renato Brunetti,,2019-05-18,,,/renato.brunetti.16?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=730&av=100013534782121&eav=AfZJoMxiESfOprmgE04catHPKArTMaG_0l7PseBtaQTNWYrS7ukblAA8H8nCOEXThVU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonino Crisafulli,,2019-05-18,,eh...pero' non sono 250.000 !!😉😉😉😉,/antonino.crisafulli3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=730&av=100013534782121&eav=AfZJoMxiESfOprmgE04catHPKArTMaG_0l7PseBtaQTNWYrS7ukblAA8H8nCOEXThVU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Armando Sacco,,2019-05-18,,questa è una piazza pidiani,/armando.sacco.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=730&av=100013534782121&eav=AfZJoMxiESfOprmgE04catHPKArTMaG_0l7PseBtaQTNWYrS7ukblAA8H8nCOEXThVU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniele Martone,,2019-05-18,,Sinceramente pensavo di più!,/daniele.martone.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=730&av=100013534782121&eav=AfZJoMxiESfOprmgE04catHPKArTMaG_0l7PseBtaQTNWYrS7ukblAA8H8nCOEXThVU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Teresa Ranieri,,2019-05-18,,,/profile.php?id=100007798324260&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=730&av=100013534782121&eav=AfZJoMxiESfOprmgE04catHPKArTMaG_0l7PseBtaQTNWYrS7ukblAA8H8nCOEXThVU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mary White,,2019-05-18,,,/profile.php?id=100002963444386&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1630&av=100013534782121&eav=AfYhpY0emom_mPbPBKoB2_awfrERyvevMFtoR6b-k6UDUZtOVzv5bq7GgJorfocDoSQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Susanna Gentile,,2019-05-18,,,/susanna.gentile.739?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1630&av=100013534782121&eav=AfYhpY0emom_mPbPBKoB2_awfrERyvevMFtoR6b-k6UDUZtOVzv5bq7GgJorfocDoSQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Susanna Gentile,,2019-05-18,,,/susanna.gentile.739?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1630&av=100013534782121&eav=AfYhpY0emom_mPbPBKoB2_awfrERyvevMFtoR6b-k6UDUZtOVzv5bq7GgJorfocDoSQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1630&av=100013534782121&eav=AfYhpY0emom_mPbPBKoB2_awfrERyvevMFtoR6b-k6UDUZtOVzv5bq7GgJorfocDoSQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1630&av=100013534782121&eav=AfYhpY0emom_mPbPBKoB2_awfrERyvevMFtoR6b-k6UDUZtOVzv5bq7GgJorfocDoSQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1630&av=100013534782121&eav=AfYhpY0emom_mPbPBKoB2_awfrERyvevMFtoR6b-k6UDUZtOVzv5bq7GgJorfocDoSQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1630&av=100013534782121&eav=AfYhpY0emom_mPbPBKoB2_awfrERyvevMFtoR6b-k6UDUZtOVzv5bq7GgJorfocDoSQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1630&av=100013534782121&eav=AfYhpY0emom_mPbPBKoB2_awfrERyvevMFtoR6b-k6UDUZtOVzv5bq7GgJorfocDoSQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1630&av=100013534782121&eav=AfYhpY0emom_mPbPBKoB2_awfrERyvevMFtoR6b-k6UDUZtOVzv5bq7GgJorfocDoSQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1630&av=100013534782121&eav=AfYhpY0emom_mPbPBKoB2_awfrERyvevMFtoR6b-k6UDUZtOVzv5bq7GgJorfocDoSQ&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1640&av=100013534782121&eav=AfbEO0bWcjd1M_9HvYCJBoU4ZC5M074rByx3wmx_ShAF0_wN6wHfAIMVoFY08H8nsZ4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1640&av=100013534782121&eav=AfbEO0bWcjd1M_9HvYCJBoU4ZC5M074rByx3wmx_ShAF0_wN6wHfAIMVoFY08H8nsZ4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1640&av=100013534782121&eav=AfbEO0bWcjd1M_9HvYCJBoU4ZC5M074rByx3wmx_ShAF0_wN6wHfAIMVoFY08H8nsZ4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Ferrara,,2019-05-18,,,/profile.php?id=100011314539019&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1640&av=100013534782121&eav=AfbEO0bWcjd1M_9HvYCJBoU4ZC5M074rByx3wmx_ShAF0_wN6wHfAIMVoFY08H8nsZ4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1640&av=100013534782121&eav=AfbEO0bWcjd1M_9HvYCJBoU4ZC5M074rByx3wmx_ShAF0_wN6wHfAIMVoFY08H8nsZ4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1640&av=100013534782121&eav=AfbEO0bWcjd1M_9HvYCJBoU4ZC5M074rByx3wmx_ShAF0_wN6wHfAIMVoFY08H8nsZ4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1640&av=100013534782121&eav=AfbEO0bWcjd1M_9HvYCJBoU4ZC5M074rByx3wmx_ShAF0_wN6wHfAIMVoFY08H8nsZ4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1640&av=100013534782121&eav=AfbEO0bWcjd1M_9HvYCJBoU4ZC5M074rByx3wmx_ShAF0_wN6wHfAIMVoFY08H8nsZ4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Agata Curto,,2019-05-18,,,/agata.curto.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1640&av=100013534782121&eav=AfbEO0bWcjd1M_9HvYCJBoU4ZC5M074rByx3wmx_ShAF0_wN6wHfAIMVoFY08H8nsZ4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1640&av=100013534782121&eav=AfbEO0bWcjd1M_9HvYCJBoU4ZC5M074rByx3wmx_ShAF0_wN6wHfAIMVoFY08H8nsZ4&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudio Sperandio,ROOT,2019-05-18,,Forza votate Lega sperando di arrivare al 51%,/claudio.sperandio.9?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265843423668787&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB5M9zRYPyW1JEe&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Annita Terruli,Claudio Sperandio,2019-05-18,,Claudio Sperandio massimo il 30,/annitaterruliiiii?rc=p&__tn__=R,https://mbasic.facebook.com/comment/replies/?ctoken=10156622506373155_2265843423668787&count=1&curr&pc=1&ft_ent_identifier=10156622506373155&gfid=AQB5M9zRYPyW1JEe&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1650&av=100013534782121&eav=AfZYrTcXADbMZI4Ao9aOnOmk1SJd_98f_SO4Kchn3or_GMfKW8d9qv1lkFkcbC3Hwck&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1650&av=100013534782121&eav=AfZYrTcXADbMZI4Ao9aOnOmk1SJd_98f_SO4Kchn3or_GMfKW8d9qv1lkFkcbC3Hwck&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1650&av=100013534782121&eav=AfZYrTcXADbMZI4Ao9aOnOmk1SJd_98f_SO4Kchn3or_GMfKW8d9qv1lkFkcbC3Hwck&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1650&av=100013534782121&eav=AfZYrTcXADbMZI4Ao9aOnOmk1SJd_98f_SO4Kchn3or_GMfKW8d9qv1lkFkcbC3Hwck&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1650&av=100013534782121&eav=AfZYrTcXADbMZI4Ao9aOnOmk1SJd_98f_SO4Kchn3or_GMfKW8d9qv1lkFkcbC3Hwck&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1650&av=100013534782121&eav=AfZYrTcXADbMZI4Ao9aOnOmk1SJd_98f_SO4Kchn3or_GMfKW8d9qv1lkFkcbC3Hwck&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1650&av=100013534782121&eav=AfZYrTcXADbMZI4Ao9aOnOmk1SJd_98f_SO4Kchn3or_GMfKW8d9qv1lkFkcbC3Hwck&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1650&av=100013534782121&eav=AfZYrTcXADbMZI4Ao9aOnOmk1SJd_98f_SO4Kchn3or_GMfKW8d9qv1lkFkcbC3Hwck&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1650&av=100013534782121&eav=AfZYrTcXADbMZI4Ao9aOnOmk1SJd_98f_SO4Kchn3or_GMfKW8d9qv1lkFkcbC3Hwck&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1650&av=100013534782121&eav=AfZYrTcXADbMZI4Ao9aOnOmk1SJd_98f_SO4Kchn3or_GMfKW8d9qv1lkFkcbC3Hwck&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Fontana,,2019-05-18,,Il 26 maggio ci prenderemo l'Europa,/maria.fontana.3158?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=740&av=100013534782121&eav=Afblm4qRCKQTsw37Om9adLTLTvYINP_gvzwyImenk5wDhVzaW6DAEPFTtyHxBh7HrqU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Son de Mar,,2019-05-18,1,,/profile.php?id=100008320535353&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=740&av=100013534782121&eav=Afblm4qRCKQTsw37Om9adLTLTvYINP_gvzwyImenk5wDhVzaW6DAEPFTtyHxBh7HrqU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Lucia Garibaldi,,2019-05-18,1,,/lucia.garibaldi.7?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=740&av=100013534782121&eav=Afblm4qRCKQTsw37Om9adLTLTvYINP_gvzwyImenk5wDhVzaW6DAEPFTtyHxBh7HrqU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefano Bossi,,2019-05-18,1,Stanno sbarcando i negri non puoi fare gnente,/stefano.bossi.792?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=740&av=100013534782121&eav=Afblm4qRCKQTsw37Om9adLTLTvYINP_gvzwyImenk5wDhVzaW6DAEPFTtyHxBh7HrqU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Servadio,,2019-05-18,,"Vai Matteo, avanti tutta!!",/andrea.servadio.1?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=740&av=100013534782121&eav=Afblm4qRCKQTsw37Om9adLTLTvYINP_gvzwyImenk5wDhVzaW6DAEPFTtyHxBh7HrqU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Bellitti,,2019-05-18,3,GRANDE SALVINI LEADER!!!#SALVINI FOREVER#,/patrizia.bellitti?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=740&av=100013534782121&eav=Afblm4qRCKQTsw37Om9adLTLTvYINP_gvzwyImenk5wDhVzaW6DAEPFTtyHxBh7HrqU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gabriella Landi,,2019-05-18,,,/gabriella.landi.58?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=740&av=100013534782121&eav=Afblm4qRCKQTsw37Om9adLTLTvYINP_gvzwyImenk5wDhVzaW6DAEPFTtyHxBh7HrqU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabio Iemmi,,2019-05-18,1,Questa volta si gira pagina Vai Salvini,/profile.php?id=100004099295648&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=740&av=100013534782121&eav=Afblm4qRCKQTsw37Om9adLTLTvYINP_gvzwyImenk5wDhVzaW6DAEPFTtyHxBh7HrqU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Bellitti,,2019-05-18,1,,/patrizia.bellitti?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=740&av=100013534782121&eav=Afblm4qRCKQTsw37Om9adLTLTvYINP_gvzwyImenk5wDhVzaW6DAEPFTtyHxBh7HrqU&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1660&av=100013534782121&eav=AfYvqbt_bNOWf-DacIIoRTqiAVCHD-KtuxTg6Dyh2FwR_W8yRWIwz_-YEi6661v5G-8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1660&av=100013534782121&eav=AfYvqbt_bNOWf-DacIIoRTqiAVCHD-KtuxTg6Dyh2FwR_W8yRWIwz_-YEi6661v5G-8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Chianini,,2019-05-18,,,/andrea.chianini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1660&av=100013534782121&eav=AfYvqbt_bNOWf-DacIIoRTqiAVCHD-KtuxTg6Dyh2FwR_W8yRWIwz_-YEi6661v5G-8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1660&av=100013534782121&eav=AfYvqbt_bNOWf-DacIIoRTqiAVCHD-KtuxTg6Dyh2FwR_W8yRWIwz_-YEi6661v5G-8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Agata Curto,,2019-05-18,,,/agata.curto.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1660&av=100013534782121&eav=AfYvqbt_bNOWf-DacIIoRTqiAVCHD-KtuxTg6Dyh2FwR_W8yRWIwz_-YEi6661v5G-8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1660&av=100013534782121&eav=AfYvqbt_bNOWf-DacIIoRTqiAVCHD-KtuxTg6Dyh2FwR_W8yRWIwz_-YEi6661v5G-8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1660&av=100013534782121&eav=AfYvqbt_bNOWf-DacIIoRTqiAVCHD-KtuxTg6Dyh2FwR_W8yRWIwz_-YEi6661v5G-8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1660&av=100013534782121&eav=AfYvqbt_bNOWf-DacIIoRTqiAVCHD-KtuxTg6Dyh2FwR_W8yRWIwz_-YEi6661v5G-8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1660&av=100013534782121&eav=AfYvqbt_bNOWf-DacIIoRTqiAVCHD-KtuxTg6Dyh2FwR_W8yRWIwz_-YEi6661v5G-8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1660&av=100013534782121&eav=AfYvqbt_bNOWf-DacIIoRTqiAVCHD-KtuxTg6Dyh2FwR_W8yRWIwz_-YEi6661v5G-8&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Bellitti,,2019-05-18,1,,/patrizia.bellitti?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=750&av=100013534782121&eav=AfZbv4RPwT-hhmetdEzer4t8YYSTHNpjRCEFNigw4efCjjDOU00fie4SzNwpc3St4Dk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Francesco Occhipinti,,2019-05-18,1,Secondo Monti sta per iniziare la 3a guerra mondiale,/francesco.occhipinti.904?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=750&av=100013534782121&eav=AfZbv4RPwT-hhmetdEzer4t8YYSTHNpjRCEFNigw4efCjjDOU00fie4SzNwpc3St4Dk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Diego Gazzolo,,2019-05-18,,A qualcuno stasera mi sa che gli pippa il culo 😂😂😂,/profile.php?id=100010791073565&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=750&av=100013534782121&eav=AfZbv4RPwT-hhmetdEzer4t8YYSTHNpjRCEFNigw4efCjjDOU00fie4SzNwpc3St4Dk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gigi Morettini,,2019-05-18,1,ROSICATE Sinistrati rosicate! Ormai i vs. Comizi li potrete fare nelle cabine telefoniche!,/profile.php?id=100010766401005&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=750&av=100013534782121&eav=AfZbv4RPwT-hhmetdEzer4t8YYSTHNpjRCEFNigw4efCjjDOU00fie4SzNwpc3St4Dk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Angela Intorre,,2019-05-18,,Sei stato grandissimo !,/angela.intorre?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=750&av=100013534782121&eav=AfZbv4RPwT-hhmetdEzer4t8YYSTHNpjRCEFNigw4efCjjDOU00fie4SzNwpc3St4Dk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Massimiliano Ragusa,,2019-05-18,,forza capitano che 26 maggio la cambiamo sta storia in europa,/massimiliano.ragusa.92?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=750&av=100013534782121&eav=AfZbv4RPwT-hhmetdEzer4t8YYSTHNpjRCEFNigw4efCjjDOU00fie4SzNwpc3St4Dk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefano Chiodini,,2019-05-18,,Che spettacolo oggi in piazza Duomo !!! Presente,/profile.php?id=100010393444644&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=750&av=100013534782121&eav=AfZbv4RPwT-hhmetdEzer4t8YYSTHNpjRCEFNigw4efCjjDOU00fie4SzNwpc3St4Dk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Domenico Santilli,,2019-05-18,,Grande Salvini!!!,/domenico.santilli.77?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=750&av=100013534782121&eav=AfZbv4RPwT-hhmetdEzer4t8YYSTHNpjRCEFNigw4efCjjDOU00fie4SzNwpc3St4Dk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giusy Patricolo,,2019-05-18,,,/giusy.patricolo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=750&av=100013534782121&eav=AfZbv4RPwT-hhmetdEzer4t8YYSTHNpjRCEFNigw4efCjjDOU00fie4SzNwpc3St4Dk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosy Rosita,,2019-05-18,1,,/rosy.procopio.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=750&av=100013534782121&eav=AfZbv4RPwT-hhmetdEzer4t8YYSTHNpjRCEFNigw4efCjjDOU00fie4SzNwpc3St4Dk&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1670&av=100013534782121&eav=AfYDDS1kM-_XwbMf56wpGifgggFICErG5yJZtSJQ8SEbmt0xsip3cHXMxrwChUg0ni0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Viviana Azzaroni,,2019-05-18,,,/viviana.azzaroni?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1670&av=100013534782121&eav=AfYDDS1kM-_XwbMf56wpGifgggFICErG5yJZtSJQ8SEbmt0xsip3cHXMxrwChUg0ni0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Agata Curto,,2019-05-18,,,/agata.curto.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1670&av=100013534782121&eav=AfYDDS1kM-_XwbMf56wpGifgggFICErG5yJZtSJQ8SEbmt0xsip3cHXMxrwChUg0ni0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Aliquò Filippo Maria,,2019-05-18,,,/aliquo.maria?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1670&av=100013534782121&eav=AfYDDS1kM-_XwbMf56wpGifgggFICErG5yJZtSJQ8SEbmt0xsip3cHXMxrwChUg0ni0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Agata Curto,,2019-05-18,,,/agata.curto.9?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1670&av=100013534782121&eav=AfYDDS1kM-_XwbMf56wpGifgggFICErG5yJZtSJQ8SEbmt0xsip3cHXMxrwChUg0ni0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gerardina De Santis,,2019-05-18,,,/gerardina.desantis.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1670&av=100013534782121&eav=AfYDDS1kM-_XwbMf56wpGifgggFICErG5yJZtSJQ8SEbmt0xsip3cHXMxrwChUg0ni0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianfranco Lo Cascio,,2019-05-18,,Buona giornata. DALLA SICILIA ALLE ALPI IL COMUNISMO NON PASSERÀ. VAI MATTEO.,/gianfranco.locascio.37?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1670&av=100013534782121&eav=AfYDDS1kM-_XwbMf56wpGifgggFICErG5yJZtSJQ8SEbmt0xsip3cHXMxrwChUg0ni0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Patrizia Caeta,,2019-05-18,,"Poveraccio, stanotte sentirà ancora nelle orecchie Matteo, Matteo, Matteo matteo matteo",/caetapatrizia?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1670&av=100013534782121&eav=AfYDDS1kM-_XwbMf56wpGifgggFICErG5yJZtSJQ8SEbmt0xsip3cHXMxrwChUg0ni0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Vincent Cantocci,,2019-05-18,,C'è molto ancora da fare. Solo buon senso vai Matteo !!!,/vincent.cantocci?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1670&av=100013534782121&eav=AfYDDS1kM-_XwbMf56wpGifgggFICErG5yJZtSJQ8SEbmt0xsip3cHXMxrwChUg0ni0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Italo Formosa,,2019-05-18,1,Crescere assieme: SALVINI MELONI BERLUSCONI È il vero centrodestra !,/profile.php?id=100012864332771&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1670&av=100013534782121&eav=AfYDDS1kM-_XwbMf56wpGifgggFICErG5yJZtSJQ8SEbmt0xsip3cHXMxrwChUg0ni0&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Savona,,2019-05-18,,,/monica.savona.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=760&av=100013534782121&eav=AfbrmdpTtbavu9_r-kOTL0t240-gsuKS2ldDfRlRCj52JsvnqkiJUpqYvMbrca9vHX8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Monica Savona,,2019-05-18,,,/monica.savona.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=760&av=100013534782121&eav=AfbrmdpTtbavu9_r-kOTL0t240-gsuKS2ldDfRlRCj52JsvnqkiJUpqYvMbrca9vHX8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Bruno Sorbelli,,2019-05-18,,1/3 della piazza e ti ritieni soddisfatto ? io inizierei a preoccuparmi del flop in arrivo,/bruno.sorbelli.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=760&av=100013534782121&eav=AfbrmdpTtbavu9_r-kOTL0t240-gsuKS2ldDfRlRCj52JsvnqkiJUpqYvMbrca9vHX8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Maria Tonon,,2019-05-18,1,Forza Matteo ! gli Italiani sono con Te .....,/maria.tonon.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=760&av=100013534782121&eav=AfbrmdpTtbavu9_r-kOTL0t240-gsuKS2ldDfRlRCj52JsvnqkiJUpqYvMbrca9vHX8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luciano Castrovilli,,2019-05-18,,,/luciano.castrovilli?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=760&av=100013534782121&eav=AfbrmdpTtbavu9_r-kOTL0t240-gsuKS2ldDfRlRCj52JsvnqkiJUpqYvMbrca9vHX8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Min Cyan Yin Gul,,2019-05-18,,I più intelligenti sono li in piazza pelché sono glandi!,/mincyan.yingul.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=760&av=100013534782121&eav=AfbrmdpTtbavu9_r-kOTL0t240-gsuKS2ldDfRlRCj52JsvnqkiJUpqYvMbrca9vHX8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Claudia Velez Escobal,,2019-05-18,,,/claudia.velezescobal?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=760&av=100013534782121&eav=AfbrmdpTtbavu9_r-kOTL0t240-gsuKS2ldDfRlRCj52JsvnqkiJUpqYvMbrca9vHX8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +La Cuccia Frenz,,2019-05-18,,Grande Matteo un successo come sempre.,/la.cuccia.50?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=760&av=100013534782121&eav=AfbrmdpTtbavu9_r-kOTL0t240-gsuKS2ldDfRlRCj52JsvnqkiJUpqYvMbrca9vHX8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Italina Puddu,,2019-05-18,,,/itala.pilia?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=760&av=100013534782121&eav=AfbrmdpTtbavu9_r-kOTL0t240-gsuKS2ldDfRlRCj52JsvnqkiJUpqYvMbrca9vHX8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Federici,,2019-05-18,1,"NN CREDEVO ALLA POLITICA DA ANNI ORMAI,CARO MATTEO GRAZIE A TE SI RITORNA A SPERARE IN MEGLIO,UNA PIAZZA DUOMO BELLISSIMA ,SEI UNICO MENO MALE CHE CI SEI,TI SI AMA,PERCHÈ SEI IL POPOLO!!!!🌹🌹🌹💕💕 GRAZIE ANCORA MINISTRO!!",/elena.federici.984?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=760&av=100013534782121&eav=AfbrmdpTtbavu9_r-kOTL0t240-gsuKS2ldDfRlRCj52JsvnqkiJUpqYvMbrca9vHX8&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cinzia Bordacchini,,2019-05-18,,,/cinzia.bordacchini.37?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1680&av=100013534782121&eav=AfabAvHzoOYajy10P_q17KJejn4CwVeDlP41Of2--oyOPOOliv5yulIjubPf_wD-TGw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mario Angela Milani,,2019-05-18,,,/profile.php?id=100013602039212&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1680&av=100013534782121&eav=AfabAvHzoOYajy10P_q17KJejn4CwVeDlP41Of2--oyOPOOliv5yulIjubPf_wD-TGw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michela Smeragliuolo,,2019-05-18,,,/pikki.pikki.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1680&av=100013534782121&eav=AfabAvHzoOYajy10P_q17KJejn4CwVeDlP41Of2--oyOPOOliv5yulIjubPf_wD-TGw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Generoso Leonzio,,2019-05-18,,,/generoso.leonzio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1680&av=100013534782121&eav=AfabAvHzoOYajy10P_q17KJejn4CwVeDlP41Of2--oyOPOOliv5yulIjubPf_wD-TGw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michela Smeragliuolo,,2019-05-18,,,/pikki.pikki.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1680&av=100013534782121&eav=AfabAvHzoOYajy10P_q17KJejn4CwVeDlP41Of2--oyOPOOliv5yulIjubPf_wD-TGw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Miranda Marchetti,,2019-05-18,,,/miranda.marchetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1680&av=100013534782121&eav=AfabAvHzoOYajy10P_q17KJejn4CwVeDlP41Of2--oyOPOOliv5yulIjubPf_wD-TGw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Miranda Marchetti,,2019-05-18,,,/miranda.marchetti?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1680&av=100013534782121&eav=AfabAvHzoOYajy10P_q17KJejn4CwVeDlP41Of2--oyOPOOliv5yulIjubPf_wD-TGw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Giorgio Bortolotti,,2019-05-18,,,/giorgio.bortolotti61?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1680&av=100013534782121&eav=AfabAvHzoOYajy10P_q17KJejn4CwVeDlP41Of2--oyOPOOliv5yulIjubPf_wD-TGw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Pasqualina Desiderio,,2019-05-18,,,/pasqualina.desiderio?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1680&av=100013534782121&eav=AfabAvHzoOYajy10P_q17KJejn4CwVeDlP41Of2--oyOPOOliv5yulIjubPf_wD-TGw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alice Rapaglià,,2019-05-18,,,/alice.rapaglia.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1680&av=100013534782121&eav=AfabAvHzoOYajy10P_q17KJejn4CwVeDlP41Of2--oyOPOOliv5yulIjubPf_wD-TGw&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Elena Federici,,2019-05-18,1,"NN CREDEVO ALLA POLITICA DA ANNI ORMAI,CARO MATTEO GRAZIE A TE SI RITORNA A SPERARE IN MEGLIO,UNA PIAZZA DUOMO BELLISSIMA ,SEI UNICO MENO MALE CHE CI SEI,TI SI AMA,PERCHÈ SEI IL POPOLO!!!!🌹🌹🌹💕💕 GRAZIE ANCORA MINISTRO!!",/elena.federici.984?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=770&av=100013534782121&eav=Afb3pJp_rKRQjlosvZRSyafK2Bm_9hoqGaNRiYHI8j5ZtV9DG93YawXZ2EFk10Gh6DA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianni Francesco Arduini,,2019-05-18,,https://www.skylinewebcams.com/it/webcam/italia/lombardia/milano/duomo-milano.html,/giannifrancesco.arduini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=770&av=100013534782121&eav=Afb3pJp_rKRQjlosvZRSyafK2Bm_9hoqGaNRiYHI8j5ZtV9DG93YawXZ2EFk10Gh6DA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Adriano Tossani,,2019-05-18,1,Meno male che non c'era nessuno,/adriano.tossani?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=770&av=100013534782121&eav=Afb3pJp_rKRQjlosvZRSyafK2Bm_9hoqGaNRiYHI8j5ZtV9DG93YawXZ2EFk10Gh6DA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Carlo Calabria,,2019-05-18,,,/carlo.calabria.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=770&av=100013534782121&eav=Afb3pJp_rKRQjlosvZRSyafK2Bm_9hoqGaNRiYHI8j5ZtV9DG93YawXZ2EFk10Gh6DA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Grassi,,2019-05-18,,Mitico Salvini forza capitano alla faccia dei rosiconi rossi,/profile.php?id=100013469232806&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=770&av=100013534782121&eav=Afb3pJp_rKRQjlosvZRSyafK2Bm_9hoqGaNRiYHI8j5ZtV9DG93YawXZ2EFk10Gh6DA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Dina Trombetta,,2019-05-18,1,Avanti tutta Matteo 🐘,/dina.trombetta.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=770&av=100013534782121&eav=Afb3pJp_rKRQjlosvZRSyafK2Bm_9hoqGaNRiYHI8j5ZtV9DG93YawXZ2EFk10Gh6DA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefano Porzionato,,2019-05-18,,Ooohhh....ma che bravo sto Salvini.,/stefano.porzionato.9?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=770&av=100013534782121&eav=Afb3pJp_rKRQjlosvZRSyafK2Bm_9hoqGaNRiYHI8j5ZtV9DG93YawXZ2EFk10Gh6DA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Daniela Gaviano,,2019-05-18,,"Grazie Salvini, domenica 26 maggio sempre insieme a te ❤️",/daniela.gaviano.5?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=770&av=100013534782121&eav=Afb3pJp_rKRQjlosvZRSyafK2Bm_9hoqGaNRiYHI8j5ZtV9DG93YawXZ2EFk10Gh6DA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Silvana Nuvola,,2019-05-18,,,/silvana.nuvola?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=770&av=100013534782121&eav=Afb3pJp_rKRQjlosvZRSyafK2Bm_9hoqGaNRiYHI8j5ZtV9DG93YawXZ2EFk10Gh6DA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sandra Gorrini,,2019-05-18,2,Da qui inizia l'Europa nuova forza lega forza Salvini,/sandra.gorrini?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=770&av=100013534782121&eav=Afb3pJp_rKRQjlosvZRSyafK2Bm_9hoqGaNRiYHI8j5ZtV9DG93YawXZ2EFk10Gh6DA&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Alice Rapaglià,,2019-05-18,,,/alice.rapaglia.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1690&av=100013534782121&eav=Afbz67Z0ighw-9xEqYF7DnWkllh-8_lttysnIGhNURZeDnExgE9oqpt92CeOOBa3iLo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Michela Smeragliuolo,,2019-05-18,,,/pikki.pikki.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1690&av=100013534782121&eav=Afbz67Z0ighw-9xEqYF7DnWkllh-8_lttysnIGhNURZeDnExgE9oqpt92CeOOBa3iLo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Chianini,,2019-05-18,,,/andrea.chianini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1690&av=100013534782121&eav=Afbz67Z0ighw-9xEqYF7DnWkllh-8_lttysnIGhNURZeDnExgE9oqpt92CeOOBa3iLo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Chianini,,2019-05-18,,,/andrea.chianini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1690&av=100013534782121&eav=Afbz67Z0ighw-9xEqYF7DnWkllh-8_lttysnIGhNURZeDnExgE9oqpt92CeOOBa3iLo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Chianini,,2019-05-18,,,/andrea.chianini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1690&av=100013534782121&eav=Afbz67Z0ighw-9xEqYF7DnWkllh-8_lttysnIGhNURZeDnExgE9oqpt92CeOOBa3iLo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Andrea Chianini,,2019-05-18,,,/andrea.chianini?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1690&av=100013534782121&eav=Afbz67Z0ighw-9xEqYF7DnWkllh-8_lttysnIGhNURZeDnExgE9oqpt92CeOOBa3iLo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Doriano Allegretti,,2019-05-18,,,/Dorianoall?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1690&av=100013534782121&eav=Afbz67Z0ighw-9xEqYF7DnWkllh-8_lttysnIGhNURZeDnExgE9oqpt92CeOOBa3iLo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Laura Marini,,2019-05-18,,,/laura.marini.5243?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1690&av=100013534782121&eav=Afbz67Z0ighw-9xEqYF7DnWkllh-8_lttysnIGhNURZeDnExgE9oqpt92CeOOBa3iLo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Manu Unam,,2019-05-18,,,/manu.unam.5209?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1690&av=100013534782121&eav=Afbz67Z0ighw-9xEqYF7DnWkllh-8_lttysnIGhNURZeDnExgE9oqpt92CeOOBa3iLo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Antonella Filippone,,2019-05-18,,,/antonella.filippone.988?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1690&av=100013534782121&eav=Afbz67Z0ighw-9xEqYF7DnWkllh-8_lttysnIGhNURZeDnExgE9oqpt92CeOOBa3iLo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Luca Gargano,,2019-05-18,,E gli striscioni sui balconi? 🤣🤣,/lucagargano123?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=780&av=100013534782121&eav=AfbtNQCZ3dq2PZj_RJ3-ohoeDO2NpIE_qCjWc1DBUIlRbjwqBPaxpzIq5SBzAJpEGtw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Caterina Cicia,,2019-05-18,1,Mai visto un delirio di gente così va tutto il nostro affetto al MINISTRO SALVINI,/caterina.cicia.14?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=780&av=100013534782121&eav=AfbtNQCZ3dq2PZj_RJ3-ohoeDO2NpIE_qCjWc1DBUIlRbjwqBPaxpzIq5SBzAJpEGtw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Jenny Jenny,,2019-05-18,,,/jenny.jenny.14811692?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=780&av=100013534782121&eav=AfbtNQCZ3dq2PZj_RJ3-ohoeDO2NpIE_qCjWc1DBUIlRbjwqBPaxpzIq5SBzAJpEGtw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Jenny Jenny,,2019-05-18,,,/jenny.jenny.14811692?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=780&av=100013534782121&eav=AfbtNQCZ3dq2PZj_RJ3-ohoeDO2NpIE_qCjWc1DBUIlRbjwqBPaxpzIq5SBzAJpEGtw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Jenny Jenny,,2019-05-18,,,/jenny.jenny.14811692?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=780&av=100013534782121&eav=AfbtNQCZ3dq2PZj_RJ3-ohoeDO2NpIE_qCjWc1DBUIlRbjwqBPaxpzIq5SBzAJpEGtw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +LuigiRosa Aversana,,2019-05-18,,É più brutta di te milano🤮🤮🤮,/profile.php?id=100006054016021&rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=780&av=100013534782121&eav=AfbtNQCZ3dq2PZj_RJ3-ohoeDO2NpIE_qCjWc1DBUIlRbjwqBPaxpzIq5SBzAJpEGtw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Nicoletta Lamedica,,2019-05-18,,io c'ero capitano.. grande salvini..🇮🇹💪,/nicoletta.lamedica?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=780&av=100013534782121&eav=AfbtNQCZ3dq2PZj_RJ3-ohoeDO2NpIE_qCjWc1DBUIlRbjwqBPaxpzIq5SBzAJpEGtw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Hermo Antonio D'Astolfo,,2019-05-18,,,/hermo.dastolfo?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=780&av=100013534782121&eav=AfbtNQCZ3dq2PZj_RJ3-ohoeDO2NpIE_qCjWc1DBUIlRbjwqBPaxpzIq5SBzAJpEGtw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Gianandrea Carini,,2019-05-18,,tutti a vedere un film di Zorro!,/gianandrea.carini.3?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=780&av=100013534782121&eav=AfbtNQCZ3dq2PZj_RJ3-ohoeDO2NpIE_qCjWc1DBUIlRbjwqBPaxpzIq5SBzAJpEGtw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stirbu Carolina,,2019-05-18,1,"GRANDE SALVINI, FORZA.",/stirbu.carolina?rc=p&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=10156622506373155&id=252306033154&p=780&av=100013534782121&eav=AfbtNQCZ3dq2PZj_RJ3-ohoeDO2NpIE_qCjWc1DBUIlRbjwqBPaxpzIq5SBzAJpEGtw&refid=52&_ft_=mf_story_key.10156622506373155%3Atop_level_post_id.10156622506373155%3Atl_objid.10156622506373155%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.10156622506373155%3Apage_id.252306033154%3Aphoto_id.10156622506198155%3Astory_location.4%3Astory_attachment_style.photo%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A10156622506373155%2C%22publish_time%22%3A1558194219%2C%22story_name%22%3A%22EntStatusCreationStory%22%2C%22object_fbtype%22%3A266%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntStatusCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A10156622506373155%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Ida De Sensi,,2019-05-18,,,/ida.desensi.50?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1700&av=100013534782121&eav=AfbNoJd5cBd3Og7hThpNATWZA23_Ba67YomwLFYaWkAh_rBuoSZ0u2tt0koqiGeuSpo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Fabrizio Foschi,,2019-05-18,,,/fabrizio.foschi2?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1700&av=100013534782121&eav=AfbNoJd5cBd3Og7hThpNATWZA23_Ba67YomwLFYaWkAh_rBuoSZ0u2tt0koqiGeuSpo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Rosanna Rosy,,2019-05-18,,,/rosanna.rosy?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1700&av=100013534782121&eav=AfbNoJd5cBd3Og7hThpNATWZA23_Ba67YomwLFYaWkAh_rBuoSZ0u2tt0koqiGeuSpo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Sabry Evan,,2019-05-18,,,/sabry.actis?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1700&av=100013534782121&eav=AfbNoJd5cBd3Og7hThpNATWZA23_Ba67YomwLFYaWkAh_rBuoSZ0u2tt0koqiGeuSpo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Catia Citti,,2019-05-18,,Per Calenda chiamiamo Chi l'ha visto?😂😂😂😂😂,/catia.citti.5?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1700&av=100013534782121&eav=AfbNoJd5cBd3Og7hThpNATWZA23_Ba67YomwLFYaWkAh_rBuoSZ0u2tt0koqiGeuSpo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Marcella Bonacchi,,2019-05-18,,Matteo oooooo domani hai la febbre..,/marcella.bonacchi.7?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1700&av=100013534782121&eav=AfbNoJd5cBd3Og7hThpNATWZA23_Ba67YomwLFYaWkAh_rBuoSZ0u2tt0koqiGeuSpo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Innocenzo Marro,,2019-05-18,,Questa Italia Orgogliosa di chi lavora per la Patriaaaa,/profile.php?id=100011180501928&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1700&av=100013534782121&eav=AfbNoJd5cBd3Og7hThpNATWZA23_Ba67YomwLFYaWkAh_rBuoSZ0u2tt0koqiGeuSpo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Cozzi Gabriella,,2019-05-18,5,Italia protetta dala nostra bela Madunina tuta d’ora e picinina❤️,/cozzi.gabriella?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1700&av=100013534782121&eav=AfbNoJd5cBd3Og7hThpNATWZA23_Ba67YomwLFYaWkAh_rBuoSZ0u2tt0koqiGeuSpo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Stefania Sgro,,2019-05-18,2,Vai con la Meloni,/stefania.sgro.3?rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1700&av=100013534782121&eav=AfbNoJd5cBd3Og7hThpNATWZA23_Ba67YomwLFYaWkAh_rBuoSZ0u2tt0koqiGeuSpo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154 +Mario Angela Milani,,2019-05-18,,,/profile.php?id=100013602039212&rc=p&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154&__tn__=R,https://mbasic.facebook.com/story.php?story_fbid=325209824821404&id=252306033154&p=1700&av=100013534782121&eav=AfbNoJd5cBd3Og7hThpNATWZA23_Ba67YomwLFYaWkAh_rBuoSZ0u2tt0koqiGeuSpo&refid=52&_ft_=mf_story_key.325209824821404%3Atop_level_post_id.325209824821404%3Atl_objid.325209824821404%3Acontent_owner_id_new.252306033154%3Athrowback_story_fbid.325209824821404%3Apage_id.252306033154%3Aphoto_id.325209824821404%3Astory_location.4%3Astory_attachment_style.video_inline%3Apage_insights.%7B%22252306033154%22%3A%7B%22role%22%3A1%2C%22page_id%22%3A252306033154%2C%22post_context%22%3A%7B%22story_fbid%22%3A325209824821404%2C%22publish_time%22%3A1558195015%2C%22story_name%22%3A%22EntVideoCreationStory%22%2C%22object_fbtype%22%3A1%7D%2C%22actor_id%22%3A252306033154%2C%22psn%22%3A%22EntVideoCreationStory%22%2C%22sl%22%3A4%2C%22dm%22%3A%7B%22isShare%22%3A0%2C%22originalPostOwnerID%22%3A0%7D%2C%22targets%22%3A%5B%7B%22page_id%22%3A252306033154%2C%22actor_id%22%3A252306033154%2C%22role%22%3A1%2C%22post_id%22%3A325209824821404%2C%22share_id%22%3A0%7D%5D%7D%7D%3Athid.252306033154